OBJECT

JourneyOfferSelfConnection

An object containing information about a Journey Offer for the current user

link GraphQL Schema definition

1type JourneyOfferSelfConnection {
2
3# The status for if a journey offer is AVAILABLE, FUTURE, EXPIRED, etc.
4claimStatus: JourneyOfferStatus!
5
6# The claim data (link, text, or claim code) for the Journey Offer
7claimData: String
8
9# Time at which the offer becomes claimable
10claimableAt: Time
11
12# The data about the offer's marketplace restriction
13marketplaceRestriction: JourneyOfferMarketplaceRestriction!
14
15# The data about the offer's other relevant offer claims
16otherClaim: JourneyOfferOtherClaim!
17
18# Represents accounts a user has already claimed from, thus removing their
19# eligibility to claim a particular journey offer (e.g. TWITCH, AMAZON, BLIZZARD).
20conflictingAccounts: [String!]
21
22# Represents the user's ability to claim an offer
23# Optional - getOnlyActiveOffers excludes eligibility data for offers that are
24# inactive (future or expired).
25eligibility(getOnlyActiveOffers: Boolean): OfferEligibility
26
27# Represents data that was used to previously claim this offer
28orderInformation: [OfferOrderInformation!]
29
30}