class Azure::AzureStack::Mgmt::V2017_06_01::Models::ProductLink

Link with additional information about a product.

Attributes

display_name[RW]

@return [String] The description of the link.

uri[RW]

@return [String] The URI corresponding to the link.

Private Class Methods

mapper() click to toggle source

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

# File lib/2017-06-01/generated/azure_mgmt_azurestack/models/product_link.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ProductLink',
    type: {
      name: 'Composite',
      class_name: 'ProductLink',
      model_properties: {
        display_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        uri: {
          client_side_validation: true,
          required: false,
          serialized_name: 'uri',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end