ENUM

SubmitEmotePrefixResponseCode

A code indicating why the prefix submit failed, if it did.

link GraphQL Schema definition

1enum SubmitEmotePrefixResponseCode {
2
3# Only eligible users can update their emoticon prefix.
4ERR_INVALID_USER
5
6# The prefix submitted was not the correct length.
7ERR_INVALID_PREFIX_LENGTH
8
9# The prefix submitted does not meet the regular expression requirements.
10ERR_INVALID_PREFIX_REGEX
11
12# The prefix is not in a state that it can be updated.
13ERR_INVALID_PREFIX_STATE
14
15# Emote prefixes must be unique across the website.
16ERR_PREFIX_NOT_UNIQUE
17
18# The prefix was updated recently and can't be updated again for a while.
19ERR_PREFIX_UPDATE_TOO_SOON
20
21# The user is not in good standing and therefore cannot update their emoticon
22# prefix.
23ERR_NOT_IN_GOOD_STANDING
24
25# Something unexpected happened when submitting the emote prefix.
26ERR_UNKNOWN
27
28# The prefix for the affiliate can not be updated. Affiliates can update prefix
29# once every name change.
30ERR_AFFILIATE_PREFIX_UPDATE_TOO_SOON
31
32# The prefix submitted for the affiliate does not match the auto generated prefix.
33ERR_SUBMITTED_PREFIX_DOES_NOT_MATCH_AUTO_GENERATED_PREFIX
34}