class OpenApiAnnotator::Attribute

Attributes

format[RW]

Public Class Methods

new(name, type, format, nullable) click to toggle source
Calls superclass method
# File lib/open_api_annotator/attribute.rb, line 5
def initialize(name, type, format, nullable)
  super(name, type, nullable)
  self.format = format
end