class Azure::Automation::Mgmt::V2015_10_31::Models::ActivityOutputType

Definition of the activity output type.

Attributes

name[RW]

@return [String] Gets or sets the name of the activity output type.

type[RW]

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

Private Class Methods

mapper() click to toggle source

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

# File lib/2015-10-31/generated/azure_mgmt_automation/models/activity_output_type.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ActivityOutputType',
    type: {
      name: 'Composite',
      class_name: 'ActivityOutputType',
      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