ENUM

HypeTrainEndReason

The enumerated end reasons for a Hype Train.

link GraphQL Schema definition

1enum HypeTrainEndReason {
2
3# The Hype Train expired, which means that the Hype Train never completed level 1
4# after being started.
5EXPIRED
6
7# The Hype Train is in progress, which means it has not ended.
8IN_PROGRESS
9
10# The Hype Train was completed, which means that any level was completed.
11COMPLETED
12
13# An unknown ending reason.
14UNKNOWN
15}