Class: CreateTableWithPK

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

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comcreateTableWithPK

table - InteractObject
fields - Field
primaryKeys - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(table = nil, fields = [], primaryKeys = []) ⇒ CreateTableWithPK

Returns a new instance of CreateTableWithPK.



2225
2226
2227
2228
2229
# File 'lib/metal/default.rb', line 2225

def initialize(table = nil, fields = [], primaryKeys = [])
  @table = table
  @fields = fields
  @primaryKeys = primaryKeys
end

Instance Attribute Details

#fieldsObject

Returns the value of attribute fields.



2222
2223
2224
# File 'lib/metal/default.rb', line 2222

def fields
  @fields
end

#primaryKeysObject

Returns the value of attribute primaryKeys.



2223
2224
2225
# File 'lib/metal/default.rb', line 2223

def primaryKeys
  @primaryKeys
end

#tableObject

Returns the value of attribute table.



2221
2222
2223
# File 'lib/metal/default.rb', line 2221

def table
  @table
end