ENUM

UnbanRequestStatus

Possible statuses of an unban request.

link GraphQL Schema definition

1enum UnbanRequestStatus {
2
3# Default status. Is an invalid status state. Used as zero value when no specific
4# status is specified.
5NONE
6
7# Approved; user is unbanned from the channel.
8APPROVED
9
10# User's unban request is denied; user remains banned in the channel.
11DENIED
12
13# A moderator decision has not been made on the Unban Request.
14PENDING
15
16# The user has had their unban request approved, and has acknowledged
17# the rules on the channel.
18ACKNOWLEDGED
19
20# The user has canceled their unban request.
21CANCELED
22}