Package com.microsoft.graph.models
Class ApprovalStage
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.models.ApprovalStage
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class ApprovalStage
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Approval Stage.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Assigned To Me.The Display Name.The Justification.The Reviewed By.The Reviewed Date Time.The Review Result.The Status. -
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
-
assignedToMe
@SerializedName(value="assignedToMe", alternate="AssignedToMe") @Expose @Nullable public Boolean assignedToMeThe Assigned To Me. Indicates whether the stage is assigned to the calling user to review. Read-only. -
displayName
@SerializedName(value="displayName", alternate="DisplayName") @Expose @Nullable public String displayNameThe Display Name. The label provided by the policy creator to identify an approval stage. Read-only. -
justification
@SerializedName(value="justification", alternate="Justification") @Expose @Nullable public String justificationThe Justification. The justification associated with the approval stage decision. -
reviewedBy
@SerializedName(value="reviewedBy", alternate="ReviewedBy") @Expose @Nullable public Identity reviewedByThe Reviewed By. The identifier of the reviewer. 00000000-0000-0000-0000-000000000000 if the assigned reviewer hasn't reviewed. Read-only. -
reviewedDateTime
@SerializedName(value="reviewedDateTime", alternate="ReviewedDateTime") @Expose @Nullable public OffsetDateTime reviewedDateTimeThe Reviewed Date Time. The date and time when a decision was recorded. The date and time information uses 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. -
reviewResult
@SerializedName(value="reviewResult", alternate="ReviewResult") @Expose @Nullable public String reviewResultThe Review Result. The result of this approval record. Possible values include: NotReviewed, Approved, Denied. -
status
The Status. The stage status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.
-
-
Constructor Details
-
ApprovalStage
public ApprovalStage()
-
-
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
-