Class: Azure::CustomerInsights::Mgmt::V2017_04_26::Models::SalesforceTable

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-04-26/generated/azure_mgmt_customer_insights/models/salesforce_table.rb

Overview

Salesforce table.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#is_profileString

Returns Indicating whether this instance is profile.

Returns:

  • (String)

    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_categoryString

Returns The table category.

Returns:

  • (String)

    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_nameString

Returns The name of the table.

Returns:

  • (String)

    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_remarksString

Returns The table remarks.

Returns:

  • (String)

    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_schemaString

Returns The table schema.

Returns:

  • (String)

    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

.mapperObject

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