class Azure::Logic::Mgmt::V2015_02_01_preview::Models::ContentHash
Model object.
Attributes
algorithm[RW]
@return [String] Gets or sets the algorithm.
value[RW]
@return [String] Gets or sets the value.
Public Class Methods
mapper()
click to toggle source
Mapper for ContentHash
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-02-01-preview/generated/azure_mgmt_logic/models/content_hash.rb, line 27 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