Class: Retab::WorkflowTableDistinctRequest

Inherits:
Types::BaseModel show all
Defined in:
lib/retab/tables/workflow_table_distinct_request.rb

Constant Summary collapse

HASH_ATTRS =
{
  column: :column
}.freeze

Instance Attribute Summary collapse

Attributes inherited from Types::BaseModel

#last_response

Instance Method Summary collapse

Methods inherited from Types::BaseModel

deep_symbolize, #inspect, normalize, #to_h, #to_json

Constructor Details

#initialize(json) ⇒ WorkflowTableDistinctRequest

Returns a new instance of WorkflowTableDistinctRequest.



14
15
16
17
18
# File 'lib/retab/tables/workflow_table_distinct_request.rb', line 14

def initialize(json)
  super()
  hash = self.class.normalize(json)
  @column = hash[:column]
end

Instance Attribute Details

#columnObject

Returns the value of attribute column.



12
13
14
# File 'lib/retab/tables/workflow_table_distinct_request.rb', line 12

def column
  @column
end