Class: Azure::ARM::CustomerInsights::Models::ConnectorMappingFormat

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb

Overview

Connector mapping property format.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#accept_languageString

Returns The oData language.

Returns:

  • (String)

    The oData language.



22
23
24
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 22

def accept_language
  @accept_language
end

#array_separatorString

Returns Character separating array elements.

Returns:

  • (String)

    Character separating array elements.



32
33
34
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 32

def array_separator
  @array_separator
end

#column_delimiterString

Returns The character that signifies a break between columns.

Returns:

  • (String)

    The character that signifies a break between columns.



19
20
21
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 19

def column_delimiter
  @column_delimiter
end

#format_typeString

Returns The type mapping format. Default value: ‘TextFormat’ .

Returns:

  • (String)

    The type mapping format. Default value: ‘TextFormat’ .



16
17
18
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 16

def format_type
  @format_type
end

#quote_characterString

Returns Quote character, used to indicate enquoted fields.

Returns:

  • (String)

    Quote character, used to indicate enquoted fields.



25
26
27
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 25

def quote_character
  @quote_character
end

#quote_escape_characterString

quoteCharacter.

Returns:

  • (String)

    Escape character for quotes, can be the same as the



29
30
31
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 29

def quote_escape_character
  @quote_escape_character
end

Class Method Details

.mapperObject

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



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
92
93
94
# File 'lib/generated/azure_mgmt_customer_insights/models/connector_mapping_format.rb', line 39

def self.mapper()
  {
    required: false,
    serialized_name: 'ConnectorMappingFormat',
    type: {
      name: 'Composite',
      class_name: 'ConnectorMappingFormat',
      model_properties: {
        format_type: {
          required: true,
          is_constant: true,
          serialized_name: 'formatType',
          default_value: 'TextFormat',
          type: {
            name: 'String'
          }
        },
        column_delimiter: {
          required: false,
          serialized_name: 'columnDelimiter',
          type: {
            name: 'String'
          }
        },
        accept_language: {
          required: false,
          serialized_name: 'acceptLanguage',
          type: {
            name: 'String'
          }
        },
        quote_character: {
          required: false,
          serialized_name: 'quoteCharacter',
          type: {
            name: 'String'
          }
        },
        quote_escape_character: {
          required: false,
          serialized_name: 'quoteEscapeCharacter',
          type: {
            name: 'String'
          }
        },
        array_separator: {
          required: false,
          serialized_name: 'arraySeparator',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end