RemoteInputsEnabledUpdate

@Serializable
data class RemoteInputsEnabledUpdate(val microphone: Boolean? = null, val camera: Boolean? = null, val screenShare: Boolean? = null)

A desired update to a remote participant's input enabled states.

Constructors

Link copied to clipboard
constructor(microphone: Boolean? = null, camera: Boolean? = null, screenShare: Boolean? = null)

Properties

Link copied to clipboard
val camera: Boolean? = null

Whether to mute or unmute a remote participant's camera.

Link copied to clipboard
val microphone: Boolean? = null

Whether to mute or unmute a remote participant's microphone.

Link copied to clipboard
val screenShare: Boolean? = null

Whether to stop a remote participant's screen share (only false is supported).