INPUT_OBJECT

RevokeVIPInput

RevokeVIPInput contains the parameters to revoke the VIP status of a user from a channel.

link GraphQL Schema definition

1input RevokeVIPInput {
4
2# The channel from which the VIP status of the user will be revoked.
3channelID: ID!
8
5# The ID of the user whose VIP status will be revoked.
6# Either revokeeID or revokeeLogin must be provided.
7revokeeID: ID
12
9# The login of the user whose VIP status will be revoked.
10# Either revokeeID or revokeeLogin must be provided.
11revokeeLogin: String
13}