Schedule Room Options
data class ScheduleRoomOptions(var roomName: String = "", var password: String = "", var scheduleStartTime: Long = 0, var scheduleEndTime: Long = 0, var reminderSecondsBeforeStart: Int = 0, var scheduleAttendees: List<String> = emptyList(), var isAllMicrophoneDisabled: Boolean = false, var isAllCameraDisabled: Boolean = false, var isAllScreenShareDisabled: Boolean = false, var isAllMessageDisabled: Boolean = false)
Schedule room options
Overview
Configuration options when scheduling a room.
Constructors
Link copied to clipboard
constructor(roomName: String = "", password: String = "", scheduleStartTime: Long = 0, scheduleEndTime: Long = 0, reminderSecondsBeforeStart: Int = 0, scheduleAttendees: List<String> = emptyList(), isAllMicrophoneDisabled: Boolean = false, isAllCameraDisabled: Boolean = false, isAllScreenShareDisabled: Boolean = false, isAllMessageDisabled: Boolean = false)
Properties
Link copied to clipboard
Whether all cameras are disabled.
Link copied to clipboard
Whether all messages are disabled.
Link copied to clipboard
Whether all microphones are disabled.
Link copied to clipboard
Whether all screen sharing is disabled.
Link copied to clipboard
Reminder seconds before start.
Link copied to clipboard
Scheduled attendee ID list.
Link copied to clipboard
Scheduled end time.
Link copied to clipboard
Scheduled start time.