class Azure::DevTestLabs::Mgmt::V2018_09_15::Models::ArtifactParameterPropertiesFragment

Properties of an artifact parameter.

Attributes

name[RW]

@return [String] The name of the artifact parameter.

value[RW]

@return [String] The value of the artifact parameter.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-09-15/generated/azure_mgmt_devtestlabs/models/artifact_parameter_properties_fragment.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ArtifactParameterPropertiesFragment',
    type: {
      name: 'Composite',
      class_name: 'ArtifactParameterPropertiesFragment',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end