class Azure::Logic::Mgmt::V2016_06_01::Models::ContentHash

The content hash.

Attributes

algorithm[RW]

@return [String] The algorithm of the content hash.

value[RW]

@return [String] The value of the content hash.

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-06-01/generated/azure_mgmt_logic/models/content_hash.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ContentHash',
    type: {
      name: 'Composite',
      class_name: 'ContentHash',
      model_properties: {
        algorithm: {
          client_side_validation: true,
          required: false,
          serialized_name: 'algorithm',
          type: {
            name: 'String'
          }
        },
        value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end