OBJECT

JourneyAssets

Assets for a Journey.

link GraphQL Schema definition

1type JourneyAssets {
2
3# Title of the journey.
4title: String!
5
6# Subtitle describing the journey.
7subtitle: String!
8
9# Longer description of the journey.
10description: String!
11
12# Legal disclaimer text for journey.
13legal: String
14
15# Main asset for the journey
16hero: Media!
17
18# Alerts to be shown to the customer to inform them about a status of the campaign
19alertList: [Alert!]
20
21# Instructions for claiming offers in the journey
22claimInstructions: String
23
24# Image or video showing customers how to claim offers in the journey
25claimVisualInstructions: Media
26
27# Instructions for purchasing a game
28purchaseGameText: String
29
30# The URL to the third party's (e.g. Riot's) technical support page
31thirdPartySupportPageUrl: String
32
33# A URL to the page where users can manage and remove their third party account
34# link
35thirdPartyAccountManagementUrl: String
36
37# The platforms supported by the game e.g. "Available on Xbox, PC, Switch"
38platformAvailability: String
39
40# Publisher name of the journey
41publisherName: String
42
43}