Class: Azure::CustomerInsights::Mgmt::V2017_04_26::Models::SalesforceTable
- Inherits:
-
Object
- Object
- Azure::CustomerInsights::Mgmt::V2017_04_26::Models::SalesforceTable
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb
Overview
Salesforce table.
Instance Attribute Summary collapse
-
#is_profile ⇒ String
Indicating whether this instance is profile.
-
#table_category ⇒ String
The table category.
-
#table_name ⇒ String
The name of the table.
-
#table_remarks ⇒ String
The table remarks.
-
#table_schema ⇒ String
The table schema.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SalesforceTable class as Ruby Hash.
Instance Attribute Details
#is_profile ⇒ String
Returns Indicating whether this instance is profile.
16 17 18 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb', line 16 def is_profile @is_profile end |
#table_category ⇒ String
Returns The table category.
19 20 21 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb', line 19 def table_category @table_category end |
#table_name ⇒ String
Returns The name of the table.
22 23 24 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb', line 22 def table_name @table_name end |
#table_remarks ⇒ String
Returns The table remarks.
25 26 27 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb', line 25 def table_remarks @table_remarks end |
#table_schema ⇒ String
Returns The table schema.
28 29 30 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb', line 28 def table_schema @table_schema end |
Class Method Details
.mapper ⇒ Object
Mapper for SalesforceTable class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SalesforceTable', type: { name: 'Composite', class_name: 'SalesforceTable', model_properties: { is_profile: { client_side_validation: true, required: false, serialized_name: 'isProfile', type: { name: 'String' } }, table_category: { client_side_validation: true, required: true, serialized_name: 'tableCategory', type: { name: 'String' } }, table_name: { client_side_validation: true, required: true, serialized_name: 'tableName', type: { name: 'String' } }, table_remarks: { client_side_validation: true, required: false, serialized_name: 'tableRemarks', type: { name: 'String' } }, table_schema: { client_side_validation: true, required: true, serialized_name: 'tableSchema', type: { name: 'String' } } } } } end |