Class: RetrieveTableRecords

Inherits:
Object
  • Object
show all
Defined in:
lib/stub/default.rb

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comretrieveTableRecords

table - InteractObject
queryColumn - SOAP::SOAPString
fieldList - SOAP::SOAPString
idsToRetrieve - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(table = nil, queryColumn = nil, fieldList = [], idsToRetrieve = []) ⇒ RetrieveTableRecords

Returns a new instance of RetrieveTableRecords.



1701
1702
1703
1704
1705
1706
# File 'lib/stub/default.rb', line 1701

def initialize(table = nil, queryColumn = nil, fieldList = [], idsToRetrieve = [])
  @table = table
  @queryColumn = queryColumn
  @fieldList = fieldList
  @idsToRetrieve = idsToRetrieve
end

Instance Attribute Details

#fieldListObject

Returns the value of attribute fieldList.



1698
1699
1700
# File 'lib/stub/default.rb', line 1698

def fieldList
  @fieldList
end

#idsToRetrieveObject

Returns the value of attribute idsToRetrieve.



1699
1700
1701
# File 'lib/stub/default.rb', line 1699

def idsToRetrieve
  @idsToRetrieve
end

#queryColumnObject

Returns the value of attribute queryColumn.



1697
1698
1699
# File 'lib/stub/default.rb', line 1697

def queryColumn
  @queryColumn
end

#tableObject

Returns the value of attribute table.



1696
1697
1698
# File 'lib/stub/default.rb', line 1696

def table
  @table
end