ENUM

PublishSubscriptionEmoteErrorCode

Possible error codes returned for publishing subscription emotes.

link GraphQL Schema definition

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