ENUM

ChallengeConditionState

The current state of the condition.

link GraphQL Schema definition

1enum ChallengeConditionState {
2
3# New condition participants can be associated with this condition.
4ACTIVE
5
6# Condition was manually terminated. New condition participants cannot be
7# associated.
8CANCELED
9
10# Condition was satisfied for the final time. New condition participants cannot be
11# associated with this condition.
12INACTIVE
13
14# Condition was automatically terminated. New condition participants cannot be
15# associated.
16EXPIRED
17
18# Unknown state.
19UNKNOWN
20}