Class: Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseColumn
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2018_02_01::Models::DataTableResponseColumn
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_column.rb
Overview
Column definition
Instance Attribute Summary collapse
-
#column_name ⇒ String
Name of the column.
-
#column_type ⇒ String
Column Type.
-
#data_type ⇒ String
Data type which looks like ‘String’ or ‘Int32’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataTableResponseColumn class as Ruby Hash.
Instance Attribute Details
#column_name ⇒ String
Returns Name of the column.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_column.rb', line 16 def column_name @column_name end |
#column_type ⇒ String
Returns Column Type.
22 23 24 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_column.rb', line 22 def column_type @column_type end |
#data_type ⇒ String
Returns Data type which looks like ‘String’ or ‘Int32’.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_column.rb', line 19 def data_type @data_type end |
Class Method Details
.mapper ⇒ Object
Mapper for DataTableResponseColumn class as Ruby Hash. This will be used for serialization/deserialization.
29 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 |
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/data_table_response_column.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DataTableResponseColumn', type: { name: 'Composite', class_name: 'DataTableResponseColumn', model_properties: { column_name: { client_side_validation: true, required: false, serialized_name: 'columnName', type: { name: 'String' } }, data_type: { client_side_validation: true, required: false, serialized_name: 'dataType', type: { name: 'String' } }, column_type: { client_side_validation: true, required: false, serialized_name: 'columnType', type: { name: 'String' } } } } } end |