Class: Azure::CustomerInsights::Mgmt::V2017_04_26::Models::CanonicalProfileDefinition
- Inherits:
-
Object
- Object
- Azure::CustomerInsights::Mgmt::V2017_04_26::Models::CanonicalProfileDefinition
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-26/generated/azure_mgmt_customer_insights/models/canonical_profile_definition.rb
Overview
Definition of canonical profile.
Instance Attribute Summary collapse
-
#canonical_profile_id ⇒ Integer
Canonical profile ID.
-
#properties ⇒ Array<CanonicalProfileDefinitionPropertiesItem>
the canonical profile.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for CanonicalProfileDefinition class as Ruby Hash.
Instance Attribute Details
#canonical_profile_id ⇒ Integer
Returns Canonical profile ID.
16 17 18 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/canonical_profile_definition.rb', line 16 def canonical_profile_id @canonical_profile_id end |
#properties ⇒ Array<CanonicalProfileDefinitionPropertiesItem>
the canonical profile.
20 21 22 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/canonical_profile_definition.rb', line 20 def properties @properties end |
Class Method Details
.mapper ⇒ Object
Mapper for CanonicalProfileDefinition class as Ruby Hash. This will be used for serialization/deserialization.
27 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 57 58 59 60 61 62 63 64 |
# File 'lib/2017-04-26/generated/azure_mgmt_customer_insights/models/canonical_profile_definition.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'CanonicalProfileDefinition', type: { name: 'Composite', class_name: 'CanonicalProfileDefinition', model_properties: { canonical_profile_id: { client_side_validation: true, required: false, serialized_name: 'canonicalProfileId', type: { name: 'Number' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'CanonicalProfileDefinitionPropertiesItemElementType', type: { name: 'Composite', class_name: 'CanonicalProfileDefinitionPropertiesItem' } } } } } } } end |