Sha256: aee536d70d058b7a3e8a06a862ddbb3eb84b5b9d69bbcae94a2f1c98c96f51ee
Contents?: true
Size: 1.43 KB
Versions: 3
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_5_0_36 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
3 entries across 3 versions & 1 rubygems