RecordingStatus

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

Contains information on the status of a recording.

Constructors

Link copied to clipboard
fun RecordingStatus(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
val recordingId: RecordingId?

The identifier of the recording.

Link copied to clipboard
val startedBy: ParticipantId? = null

The participant who started the recording.

Link copied to clipboard
val streamId: StreamId

The identifier of the streaming instance.