Class: Field
- Inherits:
-
Object
- Object
- Field
- Defined in:
- lib/stub/default.rb
Overview
urn:wsurn:ws.rsysurn:ws.rsys.comField
fieldName - SOAP::SOAPString
fieldType - FieldType
custom - SOAP::SOAPBoolean
dataExtractionKey - SOAP::SOAPBoolean
Instance Attribute Summary collapse
-
#custom ⇒ Object
Returns the value of attribute custom.
-
#dataExtractionKey ⇒ Object
Returns the value of attribute dataExtractionKey.
-
#fieldName ⇒ Object
Returns the value of attribute fieldName.
-
#fieldType ⇒ Object
Returns the value of attribute fieldType.
Instance Method Summary collapse
-
#initialize(fieldName = nil, fieldType = nil, custom = nil, dataExtractionKey = nil) ⇒ Field
constructor
A new instance of Field.
Constructor Details
#initialize(fieldName = nil, fieldType = nil, custom = nil, dataExtractionKey = nil) ⇒ Field
Returns a new instance of Field.
389 390 391 392 393 394 |
# File 'lib/stub/default.rb', line 389 def initialize(fieldName = nil, fieldType = nil, custom = nil, dataExtractionKey = nil) @fieldName = fieldName @fieldType = fieldType @custom = custom @dataExtractionKey = dataExtractionKey end |
Instance Attribute Details
#custom ⇒ Object
Returns the value of attribute custom.
386 387 388 |
# File 'lib/stub/default.rb', line 386 def custom @custom end |
#dataExtractionKey ⇒ Object
Returns the value of attribute dataExtractionKey.
387 388 389 |
# File 'lib/stub/default.rb', line 387 def dataExtractionKey @dataExtractionKey end |
#fieldName ⇒ Object
Returns the value of attribute fieldName.
384 385 386 |
# File 'lib/stub/default.rb', line 384 def fieldName @fieldName end |
#fieldType ⇒ Object
Returns the value of attribute fieldType.
385 386 387 |
# File 'lib/stub/default.rb', line 385 def fieldType @fieldType end |