ENUM

RoomMemberType

DEPRECATED Type of user for grouping users in the rooms member list.

link GraphQL Schema definition

1enum RoomMemberType {
2
3# User that is the broadcaster.
4BROADCASTER@deprecated( reason: "The Rooms product has been sunset" )
5
6# User that is staff.
7STAFF@deprecated( reason: "The Rooms product has been sunset" )
8
9# User that is admin.
10ADMIN@deprecated( reason: "The Rooms product has been sunset" )
11
12# User that is global moderator.
13GLOBALMOD@deprecated( reason: "The Rooms product has been sunset" )
14
15# User that is a channel moderator.
16MOD@deprecated( reason: "The Rooms product has been sunset" )
17
18# User that has no special role.
19REGULAR@deprecated( reason: "The Rooms product has been sunset" )
20}