Class: Azure::ServiceFabric::V7_0_0_42::Models::Int64PropertyValue

Inherits:
PropertyValue
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/7.0.0.42/generated/azure_service_fabric/models/int64property_value.rb

Overview

Describes a Service Fabric property value of type Int64.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeInt64PropertyValue

Returns a new instance of Int64PropertyValue.



16
17
18
# File 'lib/7.0.0.42/generated/azure_service_fabric/models/int64property_value.rb', line 16

def initialize
  @Kind = "Int64"
end

Instance Attribute Details

#dataString

Returns The data of the property value.

Returns:

  • (String)

    The data of the property value.



23
24
25
# File 'lib/7.0.0.42/generated/azure_service_fabric/models/int64property_value.rb', line 23

def data
  @data
end

#KindObject

Returns the value of attribute Kind.



20
21
22
# File 'lib/7.0.0.42/generated/azure_service_fabric/models/int64property_value.rb', line 20

def Kind
  @Kind
end

Class Method Details

.mapperObject

Mapper for Int64PropertyValue class as Ruby Hash. This will be used for serialization/deserialization.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/7.0.0.42/generated/azure_service_fabric/models/int64property_value.rb', line 30

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