Class: Azure::Labservices::Mgmt::V2018_10_15::Models::GetPersonalPreferencesResponse
- Inherits:
-
Object
- Object
- Azure::Labservices::Mgmt::V2018_10_15::Models::GetPersonalPreferencesResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-10-15/generated/azure_mgmt_labservices/models/get_personal_preferences_response.rb
Overview
Represents the PersonalPreferences for the user
Instance Attribute Summary collapse
-
#favorite_lab_resource_ids ⇒ Array<String>
Array of favorite lab resource ids.
-
#id ⇒ String
Id to be used by the cache orchestrator.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GetPersonalPreferencesResponse class as Ruby Hash.
Instance Attribute Details
#favorite_lab_resource_ids ⇒ Array<String>
Returns Array of favorite lab resource ids.
19 20 21 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/get_personal_preferences_response.rb', line 19 def favorite_lab_resource_ids @favorite_lab_resource_ids end |
#id ⇒ String
Returns Id to be used by the cache orchestrator.
16 17 18 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/get_personal_preferences_response.rb', line 16 def id @id end |
Class Method Details
.mapper ⇒ Object
Mapper for GetPersonalPreferencesResponse class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 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 59 60 61 62 |
# File 'lib/2018-10-15/generated/azure_mgmt_labservices/models/get_personal_preferences_response.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'GetPersonalPreferencesResponse', type: { name: 'Composite', class_name: 'GetPersonalPreferencesResponse', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, favorite_lab_resource_ids: { client_side_validation: true, required: false, serialized_name: 'favoriteLabResourceIds', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |