ENUM

CreateArchivedEmoteErrorCode

Possible error codes returned for creating emotes.

link GraphQL Schema definition

1enum CreateArchivedEmoteErrorCode {
2
3# The creator has reached their limit of archived emotes.
4EMOTE_LIMIT_REACHED
5
6# Only the channel owner is allowed to upload archived emotes.
7INVALID_OWNER
8
9# The emote code submitted is unacceptable (contains offensive, banned, or "bad"
10# words, which violates guidelines).
11EMOTE_CODE_UNACCEPTABLE
12
13# Data for least one of the image sizes is not provided or invalid.
14INCOMPLETE_EMOTE_IMAGE_DATA
15
16# The emote code suffix submitted contains invalid characters.
17INVALID_CODE_SUFFIX
18
19# The upload emote image could not be parsed.
20INVALID_IMAGE_UPLOAD
21
22# The uploaded emote image could not be found.
23EMOTE_IMAGE_NOT_FOUND
24
25# There were not enough image assets supplied for the selected asset type.
26NOT_ENOUGH_EMOTE_IMAGE_ASSETS
27
28# There were more image assets supplied than required for the selected asset type.
29TOO_MANY_EMOTE_IMAGE_ASSETS
30
31# The selected emote asset type was invalid.
32INVALID_EMOTE_ASSET_TYPE
33
34# The selected emote state was invalid.
35INVALID_EMOTE_STATE
36
37# There were more emote groups supplied than required for the emote state.
38TOO_MANY_EMOTE_GROUPS
39
40# A static image asset was not supplied, but is required for the selected asset
41# type.
42EMOTE_MISSING_STATIC_ASSET
43
44# An animated image asset was not supplied, but is required for the selected asset
45# type.
46EMOTE_MISSING_ANIMATED_ASSET
47
48# Other errors returned from the service.
49UNKNOWN_ERROR
50}