ENUM

RevokeVIPErrorCode

RevokeVIPErrorCode defines a client error that occurred while revoking a VIP status.

link GraphQL Schema definition

1enum RevokeVIPErrorCode {
2
3# The channel does not exist.
4CHANNEL_NOT_FOUND
5
6# The revoker does not have permission to revoke the VIP status in this channel.
7FORBIDDEN
8
9# The user whose VIP status is to be revoked does not exist.
10REVOKEE_NOT_FOUND
11
12# The user whose VIP statu is to be revoked does not actually have the VIP status
13# to be revoked.
14REVOKEE_NOT_VIP
15}