Class UserProcessingResult
java.lang.Object
com.microsoft.graph.models.Entity
com.microsoft.graph.identitygovernance.models.UserProcessingResult
- All Implemented Interfaces:
com.microsoft.graph.serializer.IJsonBackedObject
public class UserProcessingResult
extends Entity
implements com.microsoft.graph.serializer.IJsonBackedObject
The class for the User Processing Result.
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Completed Date Time.The Failed Tasks Count.The Processing Status.The Scheduled Date Time.The Started Date Time.The Subject.The Task Processing Results.The Total Tasks Count.The Total Unprocessed Tasks Count.The Workflow Execution Type.The Workflow Version. -
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 that the workflow execution for a user completed. Value is null if the workflow hasn't completed.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
failedTasksCount
@SerializedName(value="failedTasksCount", alternate="FailedTasksCount") @Expose @Nullable public Integer failedTasksCountThe Failed Tasks Count. The number of tasks that failed in the workflow execution. -
processingStatus
@SerializedName(value="processingStatus", alternate="ProcessingStatus") @Expose @Nullable public LifecycleWorkflowProcessingStatus processingStatusThe Processing Status. The workflow execution status. The possible values are: queued, inProgress, completed, completedWithErrors, canceled, failed, unknownFutureValue.Supports $filter(eq, ne) and $orderby. -
scheduledDateTime
@SerializedName(value="scheduledDateTime", alternate="ScheduledDateTime") @Expose @Nullable public OffsetDateTime scheduledDateTimeThe Scheduled Date Time. The date time that the workflow is scheduled to be executed for a user.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
startedDateTime
@SerializedName(value="startedDateTime", alternate="StartedDateTime") @Expose @Nullable public OffsetDateTime startedDateTimeThe Started Date Time. The date time that the workflow execution started. Value is null if the workflow execution has not started.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
totalTasksCount
@SerializedName(value="totalTasksCount", alternate="TotalTasksCount") @Expose @Nullable public Integer totalTasksCountThe Total Tasks Count. The total number of tasks that in the workflow execution. -
totalUnprocessedTasksCount
@SerializedName(value="totalUnprocessedTasksCount", alternate="TotalUnprocessedTasksCount") @Expose @Nullable public Integer totalUnprocessedTasksCountThe Total Unprocessed Tasks Count. The total number of unprocessed tasks for the workflow. -
workflowExecutionType
@SerializedName(value="workflowExecutionType", alternate="WorkflowExecutionType") @Expose @Nullable public WorkflowExecutionType workflowExecutionTypeThe Workflow Execution Type. Describes the execution type of the workflow. The possible values are: scheduled, onDemand, unknownFutureValue.Supports $filter(lt, le, gt, ge, eq, ne) and $orderby. -
workflowVersion
@SerializedName(value="workflowVersion", alternate="WorkflowVersion") @Expose @Nullable public Integer workflowVersionThe Workflow Version. The version of the workflow that was executed. -
subject
The Subject. The unique identifier of the AAD user targeted for the taskProcessingResult.Supports $filter(eq, ne) and $expand. -
taskProcessingResults
@SerializedName(value="taskProcessingResults", alternate="TaskProcessingResults") @Expose @Nullable public TaskProcessingResultCollectionPage taskProcessingResultsThe Task Processing Results. The associated individual task execution.
-
-
Constructor Details
-
UserProcessingResult
public UserProcessingResult()
-
-
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
-