OBJECT
ChattersInfo
Information about the active chatters on a channel.
link GraphQL Schema definition
1 type ChattersInfo { 2 3 # List with the broadcaster. 4 : [Chatter!]! 5 6 # Number of active chatters. 7 : Int! 8 9 # List of active moderators. 10 : [Chatter!]! 11 12 # List of active staff members. 13 : [Chatter!]! 14 15 # List of active viewers. 16 : [Chatter!]! 17 18 # List of active VIPs. 19 : [Chatter!]! 20 21 }