Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.graphrbac.implementation; import java.util.Map; import com.fasterxml.jackson.annotation.JsonProperty;
Request parameters for GetMemberGroups API call.
/** * Request parameters for GetMemberGroups API call. */
public class GroupGetMemberGroupsParametersInner {
Unmatched properties from the message are deserialized this collection.
/** * Unmatched properties from the message are deserialized this collection. */
@JsonProperty(value = "") private Map<String, Object> additionalProperties;
If true, only membership in security-enabled groups should be checked. Otherwise, membership in all groups should be checked.
/** * If true, only membership in security-enabled groups should be checked. * Otherwise, membership in all groups should be checked. */
@JsonProperty(value = "securityEnabledOnly", required = true) private boolean securityEnabledOnly;
Get the additionalProperties value.
Returns:the additionalProperties value
/** * Get the additionalProperties value. * * @return the additionalProperties value */
public Map<String, Object> additionalProperties() { return this.additionalProperties; }
Set the additionalProperties value.
Params:
  • additionalProperties – the additionalProperties value to set
Returns:the GroupGetMemberGroupsParametersInner object itself.
/** * Set the additionalProperties value. * * @param additionalProperties the additionalProperties value to set * @return the GroupGetMemberGroupsParametersInner object itself. */
public GroupGetMemberGroupsParametersInner withAdditionalProperties(Map<String, Object> additionalProperties) { this.additionalProperties = additionalProperties; return this; }
Get the securityEnabledOnly value.
Returns:the securityEnabledOnly value
/** * Get the securityEnabledOnly value. * * @return the securityEnabledOnly value */
public boolean securityEnabledOnly() { return this.securityEnabledOnly; }
Set the securityEnabledOnly value.
Params:
  • securityEnabledOnly – the securityEnabledOnly value to set
Returns:the GroupGetMemberGroupsParametersInner object itself.
/** * Set the securityEnabledOnly value. * * @param securityEnabledOnly the securityEnabledOnly value to set * @return the GroupGetMemberGroupsParametersInner object itself. */
public GroupGetMemberGroupsParametersInner withSecurityEnabledOnly(boolean securityEnabledOnly) { this.securityEnabledOnly = securityEnabledOnly; return this; } }