class Azure::CustomerInsights::Mgmt::V2017_04_26::Models::ParticipantPropertyReference

The participant property reference.

Attributes

source_property_name[RW]

@return [String] The source property that maps to the target property.

target_property_name[RW]

@return [String] The target property that maps to the source property.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-04-26/generated/azure_mgmt_customer_insights/models/participant_property_reference.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ParticipantPropertyReference',
    type: {
      name: 'Composite',
      class_name: 'ParticipantPropertyReference',
      model_properties: {
        source_property_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'sourcePropertyName',
          type: {
            name: 'String'
          }
        },
        target_property_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'targetPropertyName',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end