class Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::AdditionalInformation

The additional information for a property.

Attributes

has_properties[RW]

@return [Boolean] Indicates if properties are present or not.

properties[RW]

@return The list of properties which are included in the additional information.

title_name[RW]

@return [String] The title name for the property.

title_value[RW]

@return [String] The title value for the property.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AdditionalInformation',
    type: {
      name: 'Composite',
      class_name: 'AdditionalInformation',
      model_properties: {
        title_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'titleName',
          type: {
            name: 'String'
          }
        },
        title_value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'titleValue',
          type: {
            name: 'String'
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Object'
          }
        },
        has_properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'hasProperties',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end