class Azure::Graph::Mgmt::V1_6::Models::GroupGetMemberGroupsParameters

Request parameters for GetMemberGroups API call.

Attributes

security_enabled_only[RW]

@return [Boolean] If true, only membership in security-enabled groups should be checked. Otherwise, membership in all groups should be checked.

Private Class Methods

mapper() click to toggle source

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

# File lib/1.6/generated/azure_mgmt_graph/models/group_get_member_groups_parameters.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'GroupGetMemberGroupsParameters',
    type: {
      name: 'Composite',
      class_name: 'GroupGetMemberGroupsParameters',
      model_properties: {
        security_enabled_only: {
          client_side_validation: true,
          required: true,
          serialized_name: 'securityEnabledOnly',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end