com.microsoft.graph.beta.generated.models.ApprovalStep Maven / Gradle / Ivy
package com.microsoft.graph.beta.models;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.time.OffsetDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class ApprovalStep extends Entity implements Parsable {
/**
* Instantiates a new {@link ApprovalStep} and sets the default values.
*/
public ApprovalStep() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link ApprovalStep}
*/
@jakarta.annotation.Nonnull
public static ApprovalStep createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new ApprovalStep();
}
/**
* Gets the assignedToMe property value. Indicates whether the step is assigned to the calling user to review. Read-only.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getAssignedToMe() {
return this.backingStore.get("assignedToMe");
}
/**
* Gets the displayName property value. The label provided by the policy creator to identify an approval step. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("assignedToMe", (n) -> { this.setAssignedToMe(n.getBooleanValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("justification", (n) -> { this.setJustification(n.getStringValue()); });
deserializerMap.put("reviewedBy", (n) -> { this.setReviewedBy(n.getObjectValue(Identity::createFromDiscriminatorValue)); });
deserializerMap.put("reviewedDateTime", (n) -> { this.setReviewedDateTime(n.getOffsetDateTimeValue()); });
deserializerMap.put("reviewResult", (n) -> { this.setReviewResult(n.getStringValue()); });
deserializerMap.put("status", (n) -> { this.setStatus(n.getStringValue()); });
return deserializerMap;
}
/**
* Gets the justification property value. The justification associated with the approval step decision.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getJustification() {
return this.backingStore.get("justification");
}
/**
* Gets the reviewedBy property value. The identifier of the reviewer. 00000000-0000-0000-0000-000000000000 if the assigned reviewer hasn't reviewed. Read-only.
* @return a {@link Identity}
*/
@jakarta.annotation.Nullable
public Identity getReviewedBy() {
return this.backingStore.get("reviewedBy");
}
/**
* Gets the reviewedDateTime property value. 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.
* @return a {@link OffsetDateTime}
*/
@jakarta.annotation.Nullable
public OffsetDateTime getReviewedDateTime() {
return this.backingStore.get("reviewedDateTime");
}
/**
* Gets the reviewResult property value. The result of this approval record. Possible values include: NotReviewed, Approved, Denied.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getReviewResult() {
return this.backingStore.get("reviewResult");
}
/**
* Gets the status property value. The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getStatus() {
return this.backingStore.get("status");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeBooleanValue("assignedToMe", this.getAssignedToMe());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeStringValue("justification", this.getJustification());
writer.writeObjectValue("reviewedBy", this.getReviewedBy());
writer.writeOffsetDateTimeValue("reviewedDateTime", this.getReviewedDateTime());
writer.writeStringValue("reviewResult", this.getReviewResult());
writer.writeStringValue("status", this.getStatus());
}
/**
* Sets the assignedToMe property value. Indicates whether the step is assigned to the calling user to review. Read-only.
* @param value Value to set for the assignedToMe property.
*/
public void setAssignedToMe(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("assignedToMe", value);
}
/**
* Sets the displayName property value. The label provided by the policy creator to identify an approval step. Read-only.
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the justification property value. The justification associated with the approval step decision.
* @param value Value to set for the justification property.
*/
public void setJustification(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("justification", value);
}
/**
* Sets the reviewedBy property value. The identifier of the reviewer. 00000000-0000-0000-0000-000000000000 if the assigned reviewer hasn't reviewed. Read-only.
* @param value Value to set for the reviewedBy property.
*/
public void setReviewedBy(@jakarta.annotation.Nullable final Identity value) {
this.backingStore.set("reviewedBy", value);
}
/**
* Sets the reviewedDateTime property value. 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.
* @param value Value to set for the reviewedDateTime property.
*/
public void setReviewedDateTime(@jakarta.annotation.Nullable final OffsetDateTime value) {
this.backingStore.set("reviewedDateTime", value);
}
/**
* Sets the reviewResult property value. The result of this approval record. Possible values include: NotReviewed, Approved, Denied.
* @param value Value to set for the reviewResult property.
*/
public void setReviewResult(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("reviewResult", value);
}
/**
* Sets the status property value. The step status. Possible values: InProgress, Initializing, Completed, Expired. Read-only.
* @param value Value to set for the status property.
*/
public void setStatus(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("status", value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy