ENUM

OrderState

Possible values for the state of an order

link GraphQL Schema definition

1enum OrderState {
2
3# The initial state of the order and changes when the order is closed
4PROCESSING
5
6# The order has been processed and closed successfully. The user has also received
7# the entitlement.
8SUCCEEDED
9
10# The order was completed unsuccessfully as an expected failure.
11# Ex: The customer failed ordering eligibility checks.
12FAILED
13}