OBJECT
JourneyOffer
An object containing information about an offer in a Journey
link GraphQL Schema definition
1 type JourneyOffer { 2 3 # Unique identifier for the journey offer. 4 ID! : 5 6 # Unique identifier for the catalog equivalent of the offer 7 String : 8 9 # Connection for the current user 10 JourneyOfferSelfConnection : 11 12 # Assets for the journey offer. 13 JourneyOfferAssets : 14 15 # Flag if the offer is claim-code based 16 Boolean! : 17 18 # Denotes if the journeyOffer is representing a FGWP offer 19 Boolean : 20 21 # The time at which the offer becomes available 22 Time : 23 24 # The time at which the offer is no longer available 25 Time : 26 27 }