Class: Azure::ARM::Graph::Models::GroupGetMemberGroupsResult
- Inherits:
-
Object
- Object
- Azure::ARM::Graph::Models::GroupGetMemberGroupsResult
- Includes:
- MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_graph/models/group_get_member_groups_result.rb
Overview
Server response for GetMemberGroups API call
Instance Attribute Summary collapse
-
#value ⇒ Array<String>
Group Ids of which the group is a member.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for GroupGetMemberGroupsResult class as Ruby Hash.
Instance Attribute Details
#value ⇒ Array<String>
16 17 18 |
# File 'lib/generated/azure_mgmt_graph/models/group_get_member_groups_result.rb', line 16 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for GroupGetMemberGroupsResult class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/generated/azure_mgmt_graph/models/group_get_member_groups_result.rb', line 23 def self.mapper() { required: false, serialized_name: 'GroupGetMemberGroupsResult', type: { name: 'Composite', class_name: 'GroupGetMemberGroupsResult', model_properties: { value: { required: false, serialized_name: 'value', type: { name: 'Sequence', element: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |