class Azure::CustomerInsights::Mgmt::V2017_01_01::Models::RelationshipLinkFieldMapping
The fields mapping for Relationships
.
Attributes
interaction_field_name[RW]
@return [String] The field name on the Interaction Type.
link_type[RW]
@return [LinkTypes] Link type. Possible values include: 'UpdateAlways', 'CopyIfNull'
relationship_field_name[RW]
@return [String] The field name on the Relationship metadata.
Public Class Methods
mapper()
click to toggle source
Mapper for RelationshipLinkFieldMapping
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationship_link_field_mapping.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RelationshipLinkFieldMapping', type: { name: 'Composite', class_name: 'RelationshipLinkFieldMapping', model_properties: { interaction_field_name: { client_side_validation: true, required: true, serialized_name: 'interactionFieldName', type: { name: 'String' } }, link_type: { client_side_validation: true, required: false, serialized_name: 'linkType', type: { name: 'Enum', module: 'LinkTypes' } }, relationship_field_name: { client_side_validation: true, required: true, serialized_name: 'relationshipFieldName', type: { name: 'String' } } } } } end