-
Notifications
You must be signed in to change notification settings - Fork 2
DeclineOptions
Ajša Terko edited this page Jan 30, 2025
·
2 revisions
Creates a builder instance used to build a new instance of DeclineOptions.
none
-
DeclineOptionsBuilder- Instance of the builder.
let declineOptionsBuilder = DeclineOptions.builder();
let declineOptions = declineOptionsBuilder.build();Getter for the declineOnAllDevices field.
none
-
boolean- Value of thedeclineOnAllDevicesfield.trueif the incoming call should be declined on all devices, otherwisefalse.
let declineOptions = DeclineOptions.builder().setDeclineOnAllDevices(true).build();
console.log(`Incoming call will be declined on all devices: ${declineOptions.declineOnAllDevices()}`);