OBJECT

RoomModes

Modes that have been enabled for the room.

link GraphQL Schema definition

1type RoomModes {
2
3# If enabled, messages to the room must contain only emotes.
4emotesOnlyModeEnabled: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
5
6# If enabled, messages to the room must be unique.
7r9kModeEnabled: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
8
9# The number of seconds users must wait between messages. If 0, slow mode is
10# disabled.
11slowModeDurationSeconds: Int! @deprecated( reason: "The Rooms product has been sunset" )
12
13}