OBJECT

HypeTrainProgress

The structure that contains relevant information about the current progress in the Hype Train.

link GraphQL Schema definition

1type HypeTrainProgress {
2
3# The goal value that the Hype Train is trying to complete.
4goal: Int!
5
6# The Level that the Hype Train is currently on.
7level: HypeTrainLevel!
8
9# The current progression that the channel has made in the level.
10progression: Int!
11
12# The number of seconds left until this Hype Train execution ends.
13remainingSeconds: Int!
14
15# The total progression overall that has occurred in the Hype Train across all
16# levels.
17total: Int!
18
19}