printTaskStatus resource type

Namespace: microsoft.graph

Represents the current execution status of a printTask.

Properties

Property Type Description
description String A human-readable description of the current processing state of the printTask.
state printTaskProcessingState The current processing state of the printTask. Valid values are described in the following table.

printTaskProcessingState values

Member Value Description
pending 0 Task execution is pending.
processing 1 Task execution is in progress.
completed 2 Task execution has completed.
aborted 3 Task execution was aborted.
unknownFutureValue 4 Evolvable enumeration sentinel value. Do not use.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.printTaskStatus",
  "state": "String",
  "description": "String"
}