Room creation options.

interface RoomOption {
    isAutoJoinRoom?: boolean;
    isBackToMainSessionEnabled?: boolean;
    isTimerEnabled?: boolean;
    needCountDown?: boolean;
    notNotifyMe?: boolean;
    timerDuration?: number;
    waitSeconds?: number;
}

Properties

isAutoJoinRoom?: boolean

Whether to automatically join the room when the participant is assigned to a room.

isBackToMainSessionEnabled?: boolean

Whether to allow participants in the room to return to the main session.

isTimerEnabled?: boolean

Whether to set a timer for the breakout room.

needCountDown?: boolean

Whether to offer a countdown after closing the breakout room.

notNotifyMe?: boolean

Whether to notify the user when the time is up. True: Do not notify. False: Notify.

timerDuration?: number

Duration of the timer.

waitSeconds?: number

When the breakout room is closing, the buffer time (in seconds) to leave the room. Values: 10 | 15 | 30 | 60 | 120.