class Azure::CustomerInsights::Mgmt::V2017_04_26::Models::CanonicalProfileDefinitionPropertiesItem

The definition of a canonical profile property.

Attributes

profile_name[RW]

@return [String] Profile name.

profile_property_name[RW]

@return [String] Property name of profile.

rank[RW]

@return [Integer] The rank.

type[RW]

@return [CanonicalPropertyValueType] Type of canonical property value. Possible values include: 'Numeric', 'Categorical', 'DerivedCategorical', 'DerivedNumeric'

value[RW]

@return [String] Value of the canonical property.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-04-26/generated/azure_mgmt_customer_insights/models/canonical_profile_definition_properties_item.rb, line 37
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'CanonicalProfileDefinition_propertiesItem',
    type: {
      name: 'Composite',
      class_name: 'CanonicalProfileDefinitionPropertiesItem',
      model_properties: {
        profile_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'profileName',
          type: {
            name: 'String'
          }
        },
        profile_property_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'profilePropertyName',
          type: {
            name: 'String'
          }
        },
        rank: {
          client_side_validation: true,
          required: false,
          serialized_name: 'rank',
          type: {
            name: 'Number'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end