OBJECT

RevokeVIPPayload

RevokeVIPPayload is the response after attempting to revoke the VIP status of a user.

link GraphQL Schema definition

1type RevokeVIPPayload {
2
3# The channel that the user is revoked as a VIP to.
4channel: User
5
6# The client error that has occurred.
7# Null if the operation is successful.
8error: RevokeVIPError
9
10# The user whose VIP status is revoked.
11revokee: User
12
13}