Sha256: 2d83f5f2cf3e494dc13c76223672bc8b0fb35c8ad4d0b54cb047e578e69b7e76
Contents?: true
Size: 1.43 KB
Versions: 5
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::V6_3_0_9 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
5 entries across 5 versions & 1 rubygems