Class: Dynamicloud::API::Model::RecordField
- Inherits:
-
Object
- Object
- Dynamicloud::API::Model::RecordField
- Defined in:
- lib/dynamic_model.rb
Overview
Represents a field in Dynamicloud.
Instance Attribute Summary collapse
- #comment ⇒ Object
- #id ⇒ Object
- #identifier ⇒ Object
- #items ⇒ Object
- #label ⇒ Object
- #mid ⇒ Object
- #required ⇒ Object
- #type ⇒ Object
- #uniqueness ⇒ Object
Instance Method Summary collapse
-
#initialize ⇒ RecordField
constructor
A new instance of RecordField.
Constructor Details
#initialize ⇒ RecordField
Returns a new instance of RecordField.
91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/dynamic_model.rb', line 91 def initialize @id = -1 @identifier = nil @label = nil @comment = nil @uniqueness = false @required = false @type = nil @items = nil @mid = -1 end |
Instance Attribute Details
#comment ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def comment @comment end |
#id ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def id @id end |
#identifier ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def identifier @identifier end |
#items ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def items @items end |
#label ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def label @label end |
#mid ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def mid @mid end |
#required ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def required @required end |
#type ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def type @type end |
#uniqueness ⇒ Object
89 90 91 |
# File 'lib/dynamic_model.rb', line 89 def uniqueness @uniqueness end |