OBJECT

JourneyOfferAssets

link GraphQL Schema definition

1type JourneyOfferAssets {
2
3# Title of journey offer.
4title: String!
5
6# Subtitle that describes journey offer.
7subtitle: String
8
9# Optional header of journey offer that displays custom strings.
10header: String
11
12# Main journey offer image or video.
13card: Media!
14
15# Additional images and videos for journey asset.
16additionalMedia: [Media!]
17
18# List of items available in the journey offer.
19items: [String!]
20
21# List of pixels to track offer actions
22pixels: [Pixel!]
23
24# Optional URL used to take a user to an external site to claim the offer
25externalClaimLink: String
26
27}