OBJECT

OfferSelfConnection

link GraphQL Schema definition

1type OfferSelfConnection {
2
3# Instructions on how to redeem the items that have been claimed.
4# Supplied in Markdown.
5claimInstructions: String
6
7# The data (link, text, or claim code) for the entitlement that was created.
8claimData: String
9
10# Indicates whether the user has been entitled.
11hasEntitlement: Boolean!
12
13# Represents the user's ability to claim an offer
14# Optional - onlyActiveOffers excludes eligibility data for offers that are
15# inactive (future or expired).
16eligibility(getOnlyActiveOffers: Boolean): OfferEligibility
17
18# Represents data that was used to previously claim this offer
19orderInformation: [OfferOrderInformation!]
20
21}