-
Notifications
You must be signed in to change notification settings - Fork 2
RecordingOptions
Lejla Solak edited this page Sep 11, 2023
·
4 revisions
Creates a new instance of RecordingOptions.
-
recordingType:RecordingType- Optionalstringtype 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 therecordingTypefield representing recording type preference.
let recordingOptions = new RecordingOptions("AUDIO_AND_VIDEO");
let recordingType = recordingOptions.recordingType;