Class: Retab::WorkflowTableDistinctRequest
- Inherits:
-
Types::BaseModel
- Object
- Types::BaseModel
- Retab::WorkflowTableDistinctRequest
- Defined in:
- lib/retab/tables/workflow_table_distinct_request.rb
Constant Summary collapse
- HASH_ATTRS =
{ column: :column }.freeze
Instance Attribute Summary collapse
-
#column ⇒ Object
Returns the value of attribute column.
Attributes inherited from Types::BaseModel
Instance Method Summary collapse
-
#initialize(json) ⇒ WorkflowTableDistinctRequest
constructor
A new instance of WorkflowTableDistinctRequest.
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
#column ⇒ Object
Returns the value of attribute column.
12 13 14 |
# File 'lib/retab/tables/workflow_table_distinct_request.rb', line 12 def column @column end |