INPUT_OBJECT

GrantVIPInput

GrantVIPInput contains the parameters to grant the VIP status to a user for a channel.

link GraphQL Schema definition

1input GrantVIPInput {
4
2# The channel for which the VIP status of a user will be granted.
3channelID: ID!
8
5# The ID of the user who will be granted the VIP status.
6# Either granteeID or granteeLogin must be provided.
7granteeID: ID
12
9# The login of the user who will be granted the VIP status.
10# Either granteeID or granteeLogin must be provided.
11granteeLogin: String
13}