Class: Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::AdditionalInformation
- Inherits:
-
Object
- Object
- Azure::ADHybridHealthService::Mgmt::V2014_01_01::Models::AdditionalInformation
- 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
-
#has_properties ⇒ Boolean
Indicates if properties are present or not.
-
#properties ⇒ Object
information.
-
#title_name ⇒ String
The title name for the property.
-
#title_value ⇒ String
The title value for the property.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AdditionalInformation class as Ruby Hash.
Instance Attribute Details
#has_properties ⇒ Boolean
Returns 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 |
#properties ⇒ Object
information.
23 24 25 |
# File 'lib/2014-01-01/generated/azure_mgmt_adhybridhealth_service/models/additional_information.rb', line 23 def properties @properties end |
#title_name ⇒ String
Returns 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_value ⇒ String
Returns 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
.mapper ⇒ Object
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 |