ENUM

ChannelUserRole

The possible user roles within a channel.

link GraphQL Schema definition

1enum ChannelUserRole {
2
3# The channel owner.
4BROADCASTER
5
6# An editor for the channel.
7EDITOR
8
9# A moderator for the channel.
10MODERATOR
11
12# A subscriber of the channel.
13SUBSCRIBER
14
15# A user with no roles.
16REGULAR
17}