ENUM

ContributeToChallengeErrorCode

Contribute to challenge error code.

link GraphQL Schema definition

1enum ContributeToChallengeErrorCode {
2
3# User tried to contribute to a challenge that doesn't exist i.e. there is no
4# indicated challenge at all).
5CHALLENGE_NOT_FOUND
6
7# User tried to contribute to a challenge that is not active.
8CHALLENGE_NOT_ACTIVE
9
10# Request is for a channel ID that is invalid (e.g. banned channel, channel
11# doesn't exist).
12INVALID_CHANNEL_ID
13
14# User's bits balance is too low to perform request (e.g. they only have 10 bits
15# and they request to spend 100).
16INSUFFICIENT_BITS_BALANCE
17
18# User is not allowed to contribute to the challenge (e.g. they're banned in the
19# channel).
20USER_FORBIDDEN
21
22# An unknown error occurred.
23UNKNOWN
24}