Class: CreateTable

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

Overview

urn:wsurn:ws.rsysurn:ws.rsys.comcreateTable

table - InteractObject
fields - Field

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of CreateTable.



1601
1602
1603
1604
# File 'lib/metal/default.rb', line 1601

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

Instance Attribute Details

#fieldsObject

Returns the value of attribute fields.



1599
1600
1601
# File 'lib/metal/default.rb', line 1599

def fields
  @fields
end

#tableObject

Returns the value of attribute table.



1598
1599
1600
# File 'lib/metal/default.rb', line 1598

def table
  @table
end