-
Notifications
You must be signed in to change notification settings - Fork 0
CallOptions
Ajša Terko edited this page Feb 15, 2024
·
8 revisions
audio(): boolean
audioOptions(): AudioOptions
recordingOptions(): RecordingOptions
customData(): CustomData
Getter for the audio
field.
none
-
boolean
- Value of theaudio
field indicating whether the call should include local audio.
let phoneCallOptionsBuilder = PhoneCallOptions.builder().setAudio(false).build();
let audio = phoneCallOptionsBuilder.audio;
Getter for the audioOptions
field.
none
-
AudioOptions
- Value of theaudioOptions
field indicating what configuration should be used for the audio.
let phoneCallOptionsBuilder = PhoneCallOptions.builder()
.setAudioOptions(AudioOptions.builder().lowDataMode(true).build())
.build();
let audioOptions = phoneCallOptionsBuilder.audioOptions;
Getter for the recordingOptions
field.
none
-
RecordingOptions
- Value of therecordingOptions
field representing the recording configuration to be used for the call.
let phoneCallOptionsBuilder = PhoneCallOptions.builder()
.setRecordingOptions(new PhoneCallRecordingOptions('AUDIO'))
.build();
let recordingOptions = phoneCallOptionsBuilder.recordingOptions;
Getter for the customData
field.
none
-
CustomData
- Value of thecustomData
field that is defined as an object of key-valuestring
pairs.
let phoneCallOptionsBuilder = PhoneCallOptions.builder().setCustomData({'city': 'New York'}).build();
let customData = phoneCallOptionsBuilder.customData;