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