ENUM

UnbanRequestRestrictionReason

Reasons why a user may be restricted from requesting an unban.

link GraphQL Schema definition

1enum UnbanRequestRestrictionReason {
2
3# User has already created an unban request for the current ban.
4ALREADY_CREATED
5
6# User is not banned on 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# User must be logged in to be able to request an unban.
17UNAUTHENTICATED
18
19# Unknown restricted reason.
20UNKNOWN
21}