RoomOptions

interface RoomOptions

Represents the options for a given chat room.

Inheritors

Properties

Link copied to clipboard

The message options for the room.

Link copied to clipboard

The occupancy options for the room. To enable occupancy in the room, set this property. You may use rooms.get("ROOM_NAME") { occupancy() } to enable occupancy with default options.

Link copied to clipboard

The presence options for the room. To enable presence in the room, set this property. You may use rooms.get("ROOM_NAME") { presence() } to enable presence with default options.

Link copied to clipboard

The reactions options for the room. To enable reactions in the room, set this property. You may use rooms.get("ROOM_NAME") { reactions() } to enable reactions with default options.

Link copied to clipboard
abstract val typing: TypingOptions

The typing options for the room. To enable typing in the room, set this property. You may use rooms.get("ROOM_NAME") { typing() }to enable typing with default options.