-
Notifications
You must be signed in to change notification settings - Fork 0
DeclineOptions
Ajša Terko edited this page Feb 22, 2023
·
1 revision
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 thedeclineOnAllDevices
field.true
if 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()}`);