ENUM

CreateUnbanRequestErrorCode

Error codes from create unban request mutation.

link GraphQL Schema definition

1enum CreateUnbanRequestErrorCode {
2
3# User already has a request for the current ban.
4ALREADY_CREATED
5
6# User is not banned in the channel.
7NOT_BANNED
8
9# User is attempting to create a request too since their ban. Must wait for
10# cooldown period to end.
11TOO_SOON_SINCE_BAN
12
13# Channel is not receiving unban requests.
14UNBAN_REQUESTS_DISABLED
15
16# Unknown error.
17UNKNOWN
18}