# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::V6_3_0_9 module Models # # Describes a Service Fabric property value of type Guid. # class GuidPropertyValue < PropertyValue include MsRestAzure def initialize @Kind = "Guid" end attr_accessor :Kind # @return The data of the property value. attr_accessor :data # # Mapper for GuidPropertyValue class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Guid', type: { name: 'Composite', class_name: 'GuidPropertyValue', model_properties: { Kind: { client_side_validation: true, required: true, serialized_name: 'Kind', type: { name: 'String' } }, data: { client_side_validation: true, required: true, serialized_name: 'Data', type: { name: 'String' } } } } } end end end end