com.microsoft.graph.models.UnifiedRbacResourceAction Maven / Gradle / Ivy
// Template Source: BaseEntity.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models;
import com.microsoft.graph.serializer.ISerializer;
import com.microsoft.graph.serializer.IJsonBackedObject;
import com.microsoft.graph.serializer.AdditionalDataManager;
import java.util.EnumSet;
import com.microsoft.graph.models.Entity;
import com.google.gson.JsonObject;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Unified Rbac Resource Action.
*/
public class UnifiedRbacResourceAction extends Entity implements IJsonBackedObject {
/**
* The Action Verb.
*
*/
@SerializedName(value = "actionVerb", alternate = {"ActionVerb"})
@Expose
@Nullable
public String actionVerb;
/**
* The Authentication Context Id.
*
*/
@SerializedName(value = "authenticationContextId", alternate = {"AuthenticationContextId"})
@Expose
@Nullable
public String authenticationContextId;
/**
* The Description.
*
*/
@SerializedName(value = "description", alternate = {"Description"})
@Expose
@Nullable
public String description;
/**
* The Is Authentication Context Settable.
*
*/
@SerializedName(value = "isAuthenticationContextSettable", alternate = {"IsAuthenticationContextSettable"})
@Expose
@Nullable
public Boolean isAuthenticationContextSettable;
/**
* The Name.
*
*/
@SerializedName(value = "name", alternate = {"Name"})
@Expose
@Nullable
public String name;
/**
* The Resource Scope Id.
*
*/
@SerializedName(value = "resourceScopeId", alternate = {"ResourceScopeId"})
@Expose
@Nullable
public String resourceScopeId;
/**
* Sets the raw JSON object
*
* @param serializer the serializer
* @param json the JSON object to set this object to
*/
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) {
}
}