-
Notifications
You must be signed in to change notification settings - Fork 0
RecordingOptions
Lejla Solak edited this page Sep 11, 2023
·
4 revisions
Creates a new instance of RecordingOptions
.
-
recordingType
:RecordingType
- Optionalstring
type literal representing recording type preference. Default value is"UNDEFINED"
.
let recordingOptions = new RecordingOptions("AUDIO_AND_VIDEO");
Getter for the recordingType
field.
none
-
RecordingType
- Value of therecordingType
field representing recording type preference.
let recordingOptions = new RecordingOptions("AUDIO_AND_VIDEO");
let recordingType = recordingOptions.recordingType;