class Azure::Automation::Mgmt::V2015_10_31::Models::TypeField

Information about a field of a type.

Attributes

name[RW]

@return [String] Gets or sets the name of the field.

type[RW]

@return [String] Gets or sets the type of the field.

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/type_field.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TypeField',
    type: {
      name: 'Composite',
      class_name: 'TypeField',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end