OBJECT

ChattersInfo

Information about the active chatters on a channel.

link GraphQL Schema definition

1type ChattersInfo {
2
3# List with the broadcaster.
4broadcasters: [Chatter!]!
5
6# Number of active chatters.
7count: Int!
8
9# List of active moderators.
10moderators: [Chatter!]!
11
12# List of active staff members.
13staff: [Chatter!]!
14
15# List of active viewers.
16viewers: [Chatter!]!
17
18# List of active VIPs.
19vips: [Chatter!]!
20
21}