Class: Azure::CustomerInsights::Mgmt::V2017_01_01::Models::RelationshipsLookup
- Inherits:
-
Object
- Object
- Azure::CustomerInsights::Mgmt::V2017_01_01::Models::RelationshipsLookup
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb
Overview
The definition of suggested relationship for the type.
Instance Attribute Summary collapse
-
#existing_relationship_name ⇒ String
The name of existing Relationship.
-
#profile_name ⇒ String
The relationship profile.
-
#profile_property_references ⇒ Array<ParticipantPropertyReference>
for the profile type.
-
#related_profile_name ⇒ String
The related profile.
-
#related_profile_property_references ⇒ Array<ParticipantPropertyReference>
for the related profile type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RelationshipsLookup class as Ruby Hash.
Instance Attribute Details
#existing_relationship_name ⇒ String
Returns The name of existing Relationship.
30 31 32 |
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb', line 30 def existing_relationship_name @existing_relationship_name end |
#profile_name ⇒ String
Returns The relationship profile.
16 17 18 |
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb', line 16 def profile_name @profile_name end |
#profile_property_references ⇒ Array<ParticipantPropertyReference>
for the profile type.
20 21 22 |
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb', line 20 def profile_property_references @profile_property_references end |
#related_profile_name ⇒ String
Returns The related profile.
23 24 25 |
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb', line 23 def end |
#related_profile_property_references ⇒ Array<ParticipantPropertyReference>
for the related profile type.
27 28 29 |
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb', line 27 def end |
Class Method Details
.mapper ⇒ Object
Mapper for RelationshipsLookup class as Ruby Hash. This will be used for serialization/deserialization.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/2017-01-01/generated/azure_mgmt_customer_insights/models/relationships_lookup.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RelationshipsLookup', type: { name: 'Composite', class_name: 'RelationshipsLookup', model_properties: { profile_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'profileName', type: { name: 'String' } }, profile_property_references: { client_side_validation: true, required: false, read_only: true, serialized_name: 'profilePropertyReferences', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ParticipantPropertyReferenceElementType', type: { name: 'Composite', class_name: 'ParticipantPropertyReference' } } } }, related_profile_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'relatedProfileName', type: { name: 'String' } }, related_profile_property_references: { client_side_validation: true, required: false, read_only: true, serialized_name: 'relatedProfilePropertyReferences', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ParticipantPropertyReferenceElementType', type: { name: 'Composite', class_name: 'ParticipantPropertyReference' } } } }, existing_relationship_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'existingRelationshipName', type: { name: 'String' } } } } } end |