Class: CreateTable

Inherits:
Object
  • Object
show all
Defined in:
lib/stub/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.



1602
1603
1604
1605
# File 'lib/stub/default.rb', line 1602

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

Instance Attribute Details

#fieldsObject

Returns the value of attribute fields.



1600
1601
1602
# File 'lib/stub/default.rb', line 1600

def fields
  @fields
end

#tableObject

Returns the value of attribute table.



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

def table
  @table
end