ENUM

ChannelChallengeStatus

The status of the challenge.

link GraphQL Schema definition

1enum ChannelChallengeStatus {
2
3# Encountered some challenge status that we do not know how to handle.
4UNKNOWN
5
6# Challenge is active. Users can contribute bits, with the challenge information
7# publicly visible.
8ACTIVE
9
10# Challenge was manually ended by a user and marked as "completed". Users cannot
11# contribute bits. Challenge information publicly visible.
12COMPLETED
13
14# Challenge was manually ended by a user and marked as "failed". Users cannot
15# contribute bits. Challenge information publicly visible.
16FAILED
17
18# Challenge has ended and is no longer publicly visible. Users cannot contribute
19# bits. Challenge information publicly visible.
20TIMED_OUT
21}