Package com.microsoft.graph.models
Class AccessPackageResource
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.AccessPackageResource
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class AccessPackageResource
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Access Package Resource.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Attributes.The Created Date Time.The Description.The Display Name.The Environment.The Modified Date Time.The Origin Id.The Origin System.The Roles.The Scopes. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidsetRawObject(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManagerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
attributes
@SerializedName(value="attributes", alternate="Attributes") @Expose @Nullable public List<AccessPackageResourceAttribute> attributesThe Attributes. Contains information about the attributes to be collected from the requestor and sent to the resource application. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. -
description
@SerializedName(value="description", alternate="Description") @Expose @Nullable public String descriptionThe Description. A description for the resource. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The display name of the resource, such as the application name, group name or site name. -
modifiedDateTime
@SerializedName(value="modifiedDateTime", alternate="ModifiedDateTime") @Expose @Nullable public OffsetDateTime modifiedDateTimeThe Modified Date Time. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. -
originId
The Origin Id. The unique identifier of the resource in the origin system. In the case of a Microsoft Entra group, this is the identifier of the group. -
originSystem
@SerializedName(value="originSystem", alternate="OriginSystem") @Expose @Nullable public String originSystemThe Origin System. The type of the resource in the origin system, such as SharePointOnline, AadApplication or AadGroup. -
environment
@SerializedName(value="environment", alternate="Environment") @Expose @Nullable public AccessPackageResourceEnvironment environmentThe Environment. Contains the environment information for the resource. This can be set using either the @odata.bind annotation or the environment's originId.Supports $expand. -
roles
@SerializedName(value="roles", alternate="Roles") @Expose @Nullable public AccessPackageResourceRoleCollectionPage rolesThe Roles. Read-only. Nullable. Supports $expand. -
scopes
@SerializedName(value="scopes", alternate="Scopes") @Expose @Nullable public AccessPackageResourceScopeCollectionPage scopesThe Scopes. Read-only. Nullable. Supports $expand.
-
-
Constructor Details
-
AccessPackageResource
public AccessPackageResource()
-
-
Method Details
-
setRawObject
public void setRawObject(@Nonnull com.microsoft.graph.serializer.ISerializer serializer, @Nonnull com.google.gson.JsonObject json) Sets the raw JSON object- Specified by:
setRawObjectin interfacecom.microsoft.graph.serializer.IJsonBackedObject- Overrides:
setRawObjectin classEntity- Parameters:
serializer- the serializerjson- the JSON object to set this object to
-