class Azure::CustomerInsights::Mgmt::V2017_01_01::Models::ConnectorMappingStructure
Connector mapping property structure.
Attributes
column_name[RW]
@return [String] The column name of the import file.
custom_format_specifier[RW]
@return [String] Custom format specifier for input parsing.
is_encrypted[RW]
@return [Boolean] Indicates if the column is encrypted.
property_name[RW]
@return [String] The property name of the mapping entity.
Public Class Methods
mapper()
click to toggle source
Mapper for ConnectorMappingStructure
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-01-01/generated/azure_mgmt_customer_insights/models/connector_mapping_structure.rb, line 32 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectorMappingStructure', type: { name: 'Composite', class_name: 'ConnectorMappingStructure', model_properties: { property_name: { client_side_validation: true, required: true, serialized_name: 'propertyName', type: { name: 'String' } }, column_name: { client_side_validation: true, required: true, serialized_name: 'columnName', type: { name: 'String' } }, custom_format_specifier: { client_side_validation: true, required: false, serialized_name: 'customFormatSpecifier', type: { name: 'String' } }, is_encrypted: { client_side_validation: true, required: false, serialized_name: 'isEncrypted', type: { name: 'Boolean' } } } } } end