ENUM

SendCheerValidationErrorCode

Validation error status codes.

link GraphQL Schema definition

1enum SendCheerValidationErrorCode {
2
3# Bits amount is below the minimum.
4AMOUNT_BELOW_MIN_BITS
5
6# The message was auto modded.
7AUTO_MOD_MESSAGE
8
9# The channel was ineligible for receiving bits.
10CHANNEL_INELIGIBLE
11
12# The emote amount was below the minimum bits emote amount.
13EMOTE_AMOUNT_BELOW_MIN_BITS
14
15# The user has insufficient balance.
16INSUFFICIENT_BALANCE
17
18# The bits amount is invalid.
19INVALID_BITS_AMOUNT
20
21# The bits message is invalid.
22INVALID_BITS_MESSAGE
23
24# The event ID is invalid, probably because it's been used.
25INVALID_EVENT_ID
26
27# The message length is greater than the max message length.
28MESSAGE_LENGTH_EXCEEDED
29
30# The request has been throttled.
31REQUEST_THROTTLED
32
33# The bits emotes that were sent were greater than the max allowed.
34TOO_LARGE_BITS_EMOTE
35
36# The cheer was over the maximum cheer limit.
37TOO_LARGE_CHEER
38
39# An unknown error has occurred, but it was a validation error.
40UNKNOWN
41
42# The user is banned from bits.
43USER_BANNED
44
45# The user is ineligible to send bits.
46USER_INELIGIBLE
47
48# The use is suspended from sending bits.
49USER_SUSPENDED
50
51# The message contained Zalgo text.
52ZALGO_MESSAGE
53
54# The message was not processed due to an automodded pending cheer.
55AUTO_MOD_PENDING
56
57# The message contained term(s) blocked by the channel.
58CHANNEL_BLOCKED_TERMS
59
60# The anonymous message contained text that is invalid.
61INVALID_ANONYMOUS_MESSAGE
62
63# The bits message contained an anonymous cheermote when it's not allowed (ex: in
64# public cheers).
65ANONYMOUS_CHEERMOTE_NOT_ALLOWED
66}