Sha256: 298c7677b831d419e23c7b89f6478607878c210719d683bf705283a4c1b56cfd
Contents?: true
Size: 1.43 KB
Versions: 2
Compression:
Stored size: 1.43 KB
Contents
# 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::V7_0_0_42 module Models # # Describes a Service Fabric property value of type Int64. # class Int64PropertyValue < PropertyValue include MsRestAzure def initialize @Kind = "Int64" end attr_accessor :Kind # @return [String] The data of the property value. attr_accessor :data # # Mapper for Int64PropertyValue class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Int64', type: { name: 'Composite', class_name: 'Int64PropertyValue', 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
Version data entries
2 entries across 2 versions & 1 rubygems