RecordingOptions - infobip/infobip-rtc-js GitHub Wiki



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;
⚠️ **GitHub.com Fallback** ⚠️