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

Properties

isAutoJoinRoom?: boolean

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

isBackToMainSessionEnabled?: boolean

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

isTimerAutoEnabled?: boolean

Whether or not to automatically return to the main session when time is up.

isTimerEnabled?: boolean

Whether or not to set a timer for the breakout room.

timerDuration?: number

The duration of the timer.

waitSeconds?: number

When the breakout room is closing, the buffer time to give the user to leave the room.