OBJECT
OfferOrderInformation
Information about a user's order of an offer.
link GraphQL Schema definition
1 type OfferOrderInformation { 2 3 # Unique identifier for the order 4 : ID! 5 6 # Unique identifier for catalog offer the order was placed for 7 : String 8 9 # Id for the account that the entitlement was created for 10 : String 11 12 # Name of the account when the order was placed 13 : String 14 15 # Datetime when the order was placed 16 : Time 17 18 # A redeemable code associated with the order 19 : String 20 21 # Used to determine the state of the order that was just placed 22 # Will return null by default if there is an unexpected error 23 : OrderState 24 25 # Boolean to specify that the order information constructed is for a code offer 26 # claimed on the legacy path 27 : Boolean 28 29 }