OBJECT
PurchaseOrder
PurchaseOrder is the record of a purchase made by a user.
link GraphQL Schema definition
1 type PurchaseOrder { 2 3 # The action token ID used to facilitate the 3D Secure flow. 4 : ID 5 6 # The reason for a purchase order failure, if it failed. 7 : PurchaseOrderFailureReason 8 9 # The ID of the Purchase Order. 10 : ID! 11 12 # The state of the Purchase Order. 13 : PurchaseOrderState! 14 15 }