OBJECT

OfferOrderInformation

Information about a user's order of an offer.

link GraphQL Schema definition

1type OfferOrderInformation {
2
3# Unique identifier for the order
4id: ID!
5
6# Unique identifier for catalog offer the order was placed for
7catalogOfferId: String
8
9# Id for the account that the entitlement was created for
10entitledAccountId: String
11
12# Name of the account when the order was placed
13entitledAccountName: String
14
15# Datetime when the order was placed
16orderDate: Time
17
18# A redeemable code associated with the order
19claimCode: 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
23orderState: OrderState
24
25# Boolean to specify that the order information constructed is for a code offer
26# claimed on the legacy path
27isLegacyCodeOrder: Boolean
28
29}