Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::AdditionalInformation

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb

Overview

The additional information for a property.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#has_propertiesBoolean

Returns Indicates if properties are present or not.

Returns:

  • (Boolean)

    Indicates if properties are present or not.



26
27
28
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb', line 26

def has_properties
  @has_properties
end

#propertiesObject

information.

Returns:

  • The list of properties which are included in the additional



23
24
25
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb', line 23

def properties
  @properties
end

#title_nameString

Returns The title name for the property.

Returns:

  • (String)

    The title name for the property.



16
17
18
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb', line 16

def title_name
  @title_name
end

#title_valueString

Returns The title value for the property.

Returns:

  • (String)

    The title value for the property.



19
20
21
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb', line 19

def title_value
  @title_value
end

Class Method Details

.mapperObject

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



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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AdditionalInformation',
    type: {
      name: 'Composite',
      class_name: 'AdditionalInformation',
      model_properties: {
        title_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'titleName',
          type: {
            name: 'String'
          }
        },
        title_value: {
          client_side_validation: true,
          required: false,
          serialized_name: 'titleValue',
          type: {
            name: 'String'
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Object'
          }
        },
        has_properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'hasProperties',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end