OBJECT

JourneyOffer

An object containing information about an offer in a Journey

link GraphQL Schema definition

1type JourneyOffer {
2
3# Unique identifier for the journey offer.
4id: ID!
5
6# Unique identifier for the catalog equivalent of the offer
7catalogId: String
8
9# Connection for the current user
10self: JourneyOfferSelfConnection
11
12# Assets for the journey offer.
13assets: JourneyOfferAssets
14
15# Flag if the offer is claim-code based
16grantsCode: Boolean!
17
18# Denotes if the journeyOffer is representing a FGWP offer
19isFGWP: Boolean
20
21# The time at which the offer becomes available
22startTime: Time
23
24# The time at which the offer is no longer available
25endTime: Time
26
27}