ENUM

ContributeCommunityPointsCommunityGoalErrorCode

Contribute community goal error codes.

link GraphQL Schema definition

1enum ContributeCommunityPointsCommunityGoalErrorCode {
2
3# The goal is not currently redeemable, possibly because stream is not live.
4NOT_CURRENTLY_REDEEMABLE
5
6# The current user does not have enough points to contribute this amount.
7NOT_ENOUGH_POINTS
8
9# The community goal was not found.
10NOT_FOUND
11
12# The current user is not allowed to contribute community points towards community
13# goals for this channel.
14FORBIDDEN
15
16# The current user has already reached the maximum points contributable per
17# stream.
18MAX_PER_STREAM
19
20# The current user has a contribution already in progress.
21TRANSACTION_IN_PROGRESS
22
23# The current user has already completed this transaction.
24DUPLICATE_TRANSACTION
25
26# The current user is banned.
27USER_BANNED
28
29# An unknown error occurred.
30UNKNOWN
31}