Class: Swaggard::Swagger::Property
- Inherits:
-
Object
- Object
- Swaggard::Swagger::Property
- Defined in:
- lib/swaggard/swagger/property.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(name, type, description = '', required = false, options = []) ⇒ Property
constructor
A new instance of Property.
- #required? ⇒ Boolean
- #to_doc ⇒ Object
Constructor Details
#initialize(name, type, description = '', required = false, options = []) ⇒ Property
Returns a new instance of Property.
8 9 10 11 12 13 14 |
# File 'lib/swaggard/swagger/property.rb', line 8 def initialize(name, type, description = '', required = false, = []) @id = name @type = type @description = description @required = required @options = end |
Instance Attribute Details
#description ⇒ Object (readonly)
Returns the value of attribute description.
6 7 8 |
# File 'lib/swaggard/swagger/property.rb', line 6 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
6 7 8 |
# File 'lib/swaggard/swagger/property.rb', line 6 def id @id end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
6 7 8 |
# File 'lib/swaggard/swagger/property.rb', line 6 def type @type end |
Instance Method Details
#required? ⇒ Boolean
16 17 18 |
# File 'lib/swaggard/swagger/property.rb', line 16 def required? @required end |
#to_doc ⇒ Object
20 21 22 23 24 25 |
# File 'lib/swaggard/swagger/property.rb', line 20 def to_doc result = @type.to_doc result['description'] = @description if @description.present? result['enum'] = @options if @options.present? result end |