Package com.microsoft.graph.models
Class UnifiedRoleScheduleBase
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.UnifiedRoleScheduleBase
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
UnifiedRoleAssignmentSchedule
,UnifiedRoleEligibilitySchedule
public class UnifiedRoleScheduleBase
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Unified Role Schedule Base.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe App Scope.The App Scope Id.The Created Date Time.The Created Using.The Directory Scope.The Directory Scope Id.The Modified Date Time.The Principal.The Principal Id.The Role Definition.The Role Definition Id.The Status. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
setRawObject
(com.microsoft.graph.serializer.ISerializer serializer, com.google.gson.JsonObject json) Sets the raw JSON objectMethods inherited from class com.microsoft.graph.models.Entity
additionalDataManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.microsoft.graph.serializer.IJsonBackedObject
additionalDataManager
-
Field Details
-
appScopeId
@SerializedName(value="appScopeId", alternate="AppScopeId") @Expose @Nullable public String appScopeIdThe App Scope Id. Identifier of the app-specific scope when the assignment or eligibility is scoped to an app. The scope of an assignment or eligibility determines the set of resources for which the principal has been granted access. App scopes are scopes that are defined and understood by this application only. Use / for tenant-wide app scopes. Use directoryScopeId to limit the scope to particular directory objects, for example, administrative units. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. When the schedule was created. -
createdUsing
@SerializedName(value="createdUsing", alternate="CreatedUsing") @Expose @Nullable public String createdUsingThe Created Using. Identifier of the object through which this schedule was created. -
directoryScopeId
@SerializedName(value="directoryScopeId", alternate="DirectoryScopeId") @Expose @Nullable public String directoryScopeIdThe Directory Scope Id. Identifier of the directory object representing the scope of the assignment or eligibility. The scope of an assignment or eligibility determines the set of resources for which the principal has been granted access. Directory scopes are shared scopes stored in the directory that are understood by multiple applications. Use / for tenant-wide scope. Use appScopeId to limit the scope to an application only. -
modifiedDateTime
@SerializedName(value="modifiedDateTime", alternate="ModifiedDateTime") @Expose @Nullable public OffsetDateTime modifiedDateTimeThe Modified Date Time. When the schedule was last modified. -
principalId
@SerializedName(value="principalId", alternate="PrincipalId") @Expose @Nullable public String principalIdThe Principal Id. Identifier of the principal that has been granted the role assignment or eligibility. -
roleDefinitionId
@SerializedName(value="roleDefinitionId", alternate="RoleDefinitionId") @Expose @Nullable public String roleDefinitionIdThe Role Definition Id. Identifier of the unifiedRoleDefinition object that is being assigned to the principal or that a principal is eligible for. -
status
The Status. The status of the role assignment or eligibility request. -
appScope
The App Scope. Read-only property with details of the app-specific scope when the role eligibility or assignment is scoped to an app. Nullable. -
directoryScope
@SerializedName(value="directoryScope", alternate="DirectoryScope") @Expose @Nullable public DirectoryObject directoryScopeThe Directory Scope. The directory object that is the scope of the role eligibility or assignment. Read-only. -
principal
@SerializedName(value="principal", alternate="Principal") @Expose @Nullable public DirectoryObject principalThe Principal. The principal that's getting a role assignment or that's eligible for a role through the request. -
roleDefinition
@SerializedName(value="roleDefinition", alternate="RoleDefinition") @Expose @Nullable public UnifiedRoleDefinition roleDefinitionThe Role Definition. Detailed information for the roleDefinition object that is referenced through the roleDefinitionId property.
-
-
Constructor Details
-
UnifiedRoleScheduleBase
public UnifiedRoleScheduleBase()
-
-
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:
setRawObject
in interfacecom.microsoft.graph.serializer.IJsonBackedObject
- Overrides:
setRawObject
in classEntity
- Parameters:
serializer
- the serializerjson
- the JSON object to set this object to
-