Interface RoomOptions

Represents the options for a given chat room.

interface RoomOptions {
    occupancy?: object;
    presence?: PresenceOptions;
    reactions?: object;
    typing?: TypingOptions;
}

Properties

occupancy?: object

The occupancy options for the room. To enable occupancy in the room, set this property. You may use RoomOptionsDefaults.occupancy to enable occupancy with default options.

presence?: PresenceOptions

The presence options for the room. To enable presence in the room, set this property. You may use RoomOptionsDefaults.presence to enable presence with default options.

undefined
reactions?: object

The reactions options for the room. To enable reactions in the room, set this property. You may use RoomOptionsDefaults.reactions to enable reactions with default options.

typing?: TypingOptions

The typing options for the room. To enable typing in the room, set this property. You may use RoomOptionsDefaults.typing to enable typing with default options.