Skip to content

RecordingOptions

Lejla Solak edited this page Sep 11, 2023 · 4 revisions



constructor(recordingType)

Description

Creates a new instance of RecordingOptions.

Arguments

  • recordingType: RecordingType - Optional string type literal representing recording type preference. Default value is "UNDEFINED".

Example

let recordingOptions = new RecordingOptions("AUDIO_AND_VIDEO");



recordingType()

Description

Getter for the recordingType field.

Arguments

  • none

Returns

  • RecordingType - Value of the recordingType field representing recording type preference.

Example

let recordingOptions = new RecordingOptions("AUDIO_AND_VIDEO");
let recordingType = recordingOptions.recordingType;

Tutorials

Migration guides

Reference documentation

Clone this wiki locally