RecordingStatus

@Serializable
data class RecordingStatus(val recordingId: RecordingId?, val startedBy: ParticipantId? = null, val layout: StreamingLayout? = null, val streamId: StreamId)

Contains information on the status of a recording.

Constructors

Link copied to clipboard
constructor(recordingId: RecordingId?, startedBy: ParticipantId? = null, layout: StreamingLayout? = null, streamId: StreamId)

Properties

Link copied to clipboard
val layout: StreamingLayout? = null

Specifies how the participants' videos are laid out in the stream.

Link copied to clipboard

The identifier of the recording.

Link copied to clipboard

The participant who started the recording.

Link copied to clipboard

The identifier of the streaming instance.