OBJECT
RoomModes
Modes that have been enabled for the room.
link GraphQL Schema definition
1 type RoomModes { 2 3 # If enabled, messages to the room must contain only emotes. 4 : Boolean! @deprecated( reason: "The Rooms product has been sunset" ) 5 6 # If enabled, messages to the room must be unique. 7 : 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. 11 : Int! @deprecated( reason: "The Rooms product has been sunset" ) 12 13 }