ENUM

CreateChallengeConditionParticipantErrorCode

Create Challenge Condition Participant error code.

link GraphQL Schema definition

1enum CreateChallengeConditionParticipantErrorCode {
2
3# User tried to create a condition participant with a USE_BITS effect type, but
4# they are ineligible to use bits.
5BITS_BENEFACTOR_INELIGIBLE
6
7# User tried to create a condition participant with a USE_BITS effect type, but
8# they lacked sufficient bits.
9INSUFFICIENT_BITS_BALANCE
10
11# User tried to create a condition participant for an inactive condition.
12CONDITION_NOT_ACTIVE
13
14# User tried to create a condition participant for a non-existent condition.
15CONDITION_NOT_FOUND
16
17# User tried to create a condition participant with an effect type that is not
18# supported by the associated condition.
19EFFECT_TYPE_UNSUPPORTED_BY_CONDITION
20
21# An unknown error occurred.
22UNKNOWN
23}