ENUM

UpdateBitsBadgeTiersErrorCode

Possible error codes returned for updating bits badges.

link GraphQL Schema definition

1enum UpdateBitsBadgeTiersErrorCode {
2
3# Invalid parameters in the request.
4INVALID_PARAMETER
5
6# Badge title is too long.
7BADGE_TITLE_EXCEEDS_CHARACTER_LIMIT
8
9# Badge title did not pass moderation check.
10BADGE_TITLE_FAILED_MODERATION
11
12# The emote code submitted collides with an existing emote code.
13EMOTE_CODE_ALREADY_EXISTS
14
15# The emote code submitted is unacceptable (contains offensive, banned, or "bad"
16# words, which violates guidelines).
17EMOTE_CODE_UNACCEPTABLE
18
19# Data for least one of the image sizes is not provided.
20INCOMPLETE_BADGE_IMAGE_DATA
21
22# Other errors returned from the service.
23UNKNOWN_ERROR
24}