ENUM

PredictionEventStatus

Possible statuses for a Prediction Event.

link GraphQL Schema definition

1enum PredictionEventStatus {
2
3# Event is actively accepting new predictions.
4ACTIVE
5
6# Event is no longer accepting new predictions, and is awaiting resolution.
7LOCKED
8
9# Event has been resolved, and is in the process of paying out winners.
10RESOLVE_PENDING
11
12# Event has been resolved, the winning Option has been determined, and winners
13# have received their Channel Points.
14RESOLVED
15
16# Event has been canceled, and is in the process of refunding participants.
17CANCEL_PENDING
18
19# Event has been canceled and all users have been refunded.
20CANCELED
21}