OBJECT
JourneyOfferSelfConnection
An object containing information about a Journey Offer for the current user
link GraphQL Schema definition
1 type JourneyOfferSelfConnection { 2 3 # The status for if a journey offer is AVAILABLE, FUTURE, EXPIRED, etc. 4 : JourneyOfferStatus! 5 6 # The claim data (link, text, or claim code) for the Journey Offer 7 : String 8 9 # Time at which the offer becomes claimable 10 : Time 11 12 # The data about the offer's marketplace restriction 13 : JourneyOfferMarketplaceRestriction! 14 15 # The data about the offer's other relevant offer claims 16 : 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). 20 : [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). 25 (: Boolean): OfferEligibility 26 27 # Represents data that was used to previously claim this offer 28 : [OfferOrderInformation!] 29 30 }