OBJECT

GrantVIPPayload

GrantVIPPayload is the response after attemping to grant the VIP status to a user.

link GraphQL Schema definition

1type GrantVIPPayload {
2
3# The channel for which the VIP status of the user was granted.
4channel: User
5
6# The client error that has occurred.
7# Null if the operation is successful.
8error: GrantVIPError
9
10# The user who was granted the VIP status.
11grantee: User
12
13}