OBJECT

PurchaseOrder

PurchaseOrder is the record of a purchase made by a user.

link GraphQL Schema definition

1type PurchaseOrder {
2
3# The action token ID used to facilitate the 3D Secure flow.
4actionTokenID: ID
5
6# The reason for a purchase order failure, if it failed.
7failureReason: PurchaseOrderFailureReason
8
9# The ID of the Purchase Order.
10id: ID!
11
12# The state of the Purchase Order.
13state: PurchaseOrderState!
14
15}