Class: DeleteTableRecords

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

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comdeleteTableRecords

table - InteractObject
queryColumn - SOAP::SOAPString
idsToDelete - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(table = nil, queryColumn = nil, idsToDelete = []) ⇒ DeleteTableRecords

Returns a new instance of DeleteTableRecords.



1728
1729
1730
1731
1732
# File 'lib/stub/default.rb', line 1728

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

Instance Attribute Details

#idsToDeleteObject

Returns the value of attribute idsToDelete.



1726
1727
1728
# File 'lib/stub/default.rb', line 1726

def idsToDelete
  @idsToDelete
end

#queryColumnObject

Returns the value of attribute queryColumn.



1725
1726
1727
# File 'lib/stub/default.rb', line 1725

def queryColumn
  @queryColumn
end

#tableObject

Returns the value of attribute table.



1724
1725
1726
# File 'lib/stub/default.rb', line 1724

def table
  @table
end