Package com.microsoft.graph.models
Class Request
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.Request
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
- Direct Known Subclasses:
UnifiedRoleAssignmentScheduleRequest
,UnifiedRoleEligibilityScheduleRequest
,UserConsentRequest
The class for the Request.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Approval Id.The Completed Date Time.The Created By.The Created Date Time.The Custom Data.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
-
approvalId
@SerializedName(value="approvalId", alternate="ApprovalId") @Expose @Nullable public String approvalIdThe Approval Id. The identifier of the approval of the request. -
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. The request completion date time. -
createdBy
@SerializedName(value="createdBy", alternate="CreatedBy") @Expose @Nullable public IdentitySet createdByThe Created By. The principal that created the request. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The request creation date time. -
customData
@SerializedName(value="customData", alternate="CustomData") @Expose @Nullable public String customDataThe Custom Data. Free text field to define any custom data for the request. Not used. -
status
The Status. The status of the request. Not nullable. The possible values are: Canceled, Denied, Failed, Granted, PendingAdminDecision, PendingApproval, PendingProvisioning, PendingScheduleCreation, Provisioned, Revoked, and ScheduleCreated. Not nullable.
-
-
Constructor Details
-
Request
public Request()
-
-
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
-