OBJECT
GrantVIPPayload
GrantVIPPayload is the response after attemping to grant the VIP status to a user.
link GraphQL Schema definition
1 type GrantVIPPayload { 2 3 # The channel for which the VIP status of the user was granted. 4 : User 5 6 # The client error that has occurred. 7 # Null if the operation is successful. 8 : GrantVIPError 9 10 # The user who was granted the VIP status. 11 : User 12 13 }