ENUM

UpdateCommunityPointsCommunityGoalErrorCode

Update community goal error code.

link GraphQL Schema definition

1enum UpdateCommunityPointsCommunityGoalErrorCode {
2
3# Goal already exists.
4DUPLICATE_GOAL
5
6# Goal title failed automod.
7TITLE_AUTOMOD_FAILED
8
9# Goal title is invalid.
10TITLE_INVALID
11
12# Goal description failed automod.
13DESCRIPTION_AUTOMOD_FAILED
14
15# Goal description is invalid.
16DESCRIPTION_INVALID
17
18# Goal amount is invalid.
19GOAL_AMOUNT_INVALID
20
21# Goal duration is invalid.
22DURATION_INVALID
23
24# Goal background color is invalid.
25BACKGROUND_COLOR_INVALID
26
27# Goal cannot be updated since it has already been started.
28GOAL_STARTED
29
30# Goal status change invalid.
31INVALID_STATUS_CHANGE
32
33# Goal was not found.
34NOT_FOUND
35
36# The current user is not allowed to update goals for this channel.
37FORBIDDEN
38
39# An unknown error occurred.
40UNKNOWN
41}