class Azure::CustomerInsights::Mgmt::V2017_01_01::Models::SalesforceTable

Salesforce table.

Attributes

is_profile[RW]

@return [String] Indicating whether this instance is profile.

table_category[RW]

@return [String] The table category.

table_name[RW]

@return [String] The name of the table.

table_remarks[RW]

@return [String] The table remarks.

table_schema[RW]

@return [String] The table schema.

Public Class Methods

mapper() click to toggle source

Mapper for SalesforceTable class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2017-01-01/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