ENUM

UpdateCheermoteTierErrorCode

Possible error codes returned for updating a cheermote tier.

link GraphQL Schema definition

1enum UpdateCheermoteTierErrorCode {
2
3# Only the cheermote owner is allowed to upload cheermotes.
4INVALID_OWNER
5
6# The uploaded image assets could not be parsed.
7INVALID_IMAGE_UPLOAD
8
9# The uploaded image assets could not be found.
10EMOTE_IMAGE_NOT_FOUND
11
12# There were not enough image assets supplied for the cheermote.
13NOT_ENOUGH_EMOTE_IMAGE_ASSETS
14
15# There were more image assets supplied than required for the cheermote.
16TOO_MANY_EMOTE_IMAGE_ASSETS
17
18# A static image asset was not supplied, but is required for the cheermote.
19EMOTE_MISSING_STATIC_ASSET
20
21# An animated image asset was not supplied, but is required for the cheermote.
22EMOTE_MISSING_ANIMATED_ASSET
23
24# Other errors returned from the service.
25UNKNOWN_ERROR
26}