printOperationStatus complex type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the current status of a long-running Universal Print operation.

Properties

Property Type Description
state printOperationProcessingState The printOperation's current processing state. Valid values are described in the following table. Read-only.
description String A human-readable description of the printOperation's current processing state. Read-only.

printOperationProcessingState values

Member Value Description
notStarted 0 The operation has not yet started.
running 1 The operation is running.
succeeded 2 The operation completed successfully.
failed 3 The operation failed.
unknownFutureValue 4 Evolvable enumeration sentinel value. Do not use.

JSON representation

The following is a JSON representation of the resource.

{
    "state": "String",
    "description": "String"
}