Class TaskProcessingResult
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.identitygovernance.models.TaskProcessingResult
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class TaskProcessingResult
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the Task Processing Result.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Created Date Time.The Failure Reason.The Processing Status.The Started Date Time.The Subject.The Task. -
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
-
completedDateTime
@SerializedName(value="completedDateTime", alternate="CompletedDateTime") @Expose @Nullable public OffsetDateTime completedDateTimeThe Completed Date Time. The date time when taskProcessingResult execution ended. Value is null if task execution is still in progress.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
createdDateTime
@SerializedName(value="createdDateTime", alternate="CreatedDateTime") @Expose @Nullable public OffsetDateTime createdDateTimeThe Created Date Time. The date time when the taskProcessingResult was created.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
failureReason
@SerializedName(value="failureReason", alternate="FailureReason") @Expose @Nullable public String failureReasonThe Failure Reason. Describes why the taskProcessingResult has failed. -
processingStatus
@SerializedName(value="processingStatus", alternate="ProcessingStatus") @Expose @Nullable public LifecycleWorkflowProcessingStatus processingStatusThe Processing Status. Describes the execution status of the taskProcessingResult. The possible values are: queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue.Supports $filter(eq, ne) and $orderby. -
startedDateTime
@SerializedName(value="startedDateTime", alternate="StartedDateTime") @Expose @Nullable public OffsetDateTime startedDateTimeThe Started Date Time. The date time when taskProcessingResult execution started. Value is null if task execution has not yet started.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
subject
The Subject. The unique identifier of the Azure AD user targeted for the task execution.Supports $filter(eq, ne) and $expand. -
task
The Task. The related workflow task
-
-
Constructor Details
-
TaskProcessingResult
public TaskProcessingResult()
-
-
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
-