Class: Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseObject
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseObject
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_object.rb
Overview
Data Table which defines columns and raw row values
Instance Attribute Summary collapse
-
#columns ⇒ Array<DataTableResponseColumn>
types.
-
#rows ⇒ Array<Array<String>>
Raw row values.
-
#table_name ⇒ String
Name of the table.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataTableResponseObject class as Ruby Hash.
Instance Attribute Details
#columns ⇒ Array<DataTableResponseColumn>
types
20 21 22 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_object.rb', line 20 def columns @columns end |
#rows ⇒ Array<Array<String>>
Returns Raw row values.
23 24 25 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_object.rb', line 23 def rows @rows end |
#table_name ⇒ String
Returns Name of the table.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_object.rb', line 16 def table_name @table_name end |
Class Method Details
.mapper ⇒ Object
Mapper for DataTableResponseObject class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_object.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DataTableResponseObject', type: { name: 'Composite', class_name: 'DataTableResponseObject', model_properties: { table_name: { client_side_validation: true, required: false, serialized_name: 'tableName', type: { name: 'String' } }, columns: { client_side_validation: true, required: false, serialized_name: 'columns', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'DataTableResponseColumnElementType', type: { name: 'Composite', class_name: 'DataTableResponseColumn' } } } }, rows: { client_side_validation: true, required: false, serialized_name: 'rows', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ArrayElementType', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } } } end |