Class: Azure::CustomerInsights::Mgmt::V2017_04_26::Models::ParticipantProfilePropertyReference
- Inherits:
-
Object
- Object
- Azure::CustomerInsights::Mgmt::V2017_04_26::Models::ParticipantProfilePropertyReference
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-26/generated/azure_mgmt_customer_insights/models/participant_profile_property_reference.rb
Overview
The participant profile property reference.
Instance Attribute Summary collapse
-
#interaction_property_name ⇒ String
target profile property.
-
#profile_property_name ⇒ String
interaction property.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ParticipantProfilePropertyReference class as Ruby Hash.
Instance Attribute Details
#interaction_property_name ⇒ String
target profile property.
17 18 19 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/participant_profile_property_reference.rb', line 17 def interaction_property_name @interaction_property_name end |
#profile_property_name ⇒ String
interaction property.
21 22 23 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/participant_profile_property_reference.rb', line 21 def profile_property_name @profile_property_name end |
Class Method Details
.mapper ⇒ Object
Mapper for ParticipantProfilePropertyReference class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/participant_profile_property_reference.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ParticipantProfilePropertyReference', type: { name: 'Composite', class_name: 'ParticipantProfilePropertyReference', 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 |