Class: Field

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#customObject

Returns the value of attribute custom.



386
387
388
# File 'lib/stub/default.rb', line 386

def custom
  @custom
end

#dataExtractionKeyObject

Returns the value of attribute dataExtractionKey.



387
388
389
# File 'lib/stub/default.rb', line 387

def dataExtractionKey
  @dataExtractionKey
end

#fieldNameObject

Returns the value of attribute fieldName.



384
385
386
# File 'lib/stub/default.rb', line 384

def fieldName
  @fieldName
end

#fieldTypeObject

Returns the value of attribute fieldType.



385
386
387
# File 'lib/stub/default.rb', line 385

def fieldType
  @fieldType
end