class Azure::CustomerInsights::Mgmt::V2017_01_01::Models::ParticipantPropertyReference

The participant property reference.

Attributes

interaction_property_name[RW]

@return [String] The interaction property that maps to the profile property.

profile_property_name[RW]

@return [String] The profile property that maps to the interaction property.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-01-01/generated/azure_mgmt_customer_insights/models/participant_property_reference.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ParticipantPropertyReference',
    type: {
      name: 'Composite',
      class_name: 'ParticipantPropertyReference',
      model_properties: {
        interaction_property_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'interactionPropertyName',
          type: {
            name: 'String'
          }
        },
        profile_property_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'profilePropertyName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end