-
Notifications
You must be signed in to change notification settings - Fork 2
DeclineOptions
Lejla Solak edited this page Feb 10, 2025
·
3 revisions
static DeclineOptions.DeclineOptionsBuilder builder()boolean isDeclineOnAllDevices()static class DeclineOptionsBuilder
Creates a builder instance used to build a new instance of DeclineOptions.
none
-
DeclineOptions.DeclineOptionsBuilder- Instance of the builder.
DeclineOptions.DeclineOptionsBuilder declineOptionsBuilder = DeclineOptions.builder();Getter for the declineOnAllDevices field.
none
-
boolean- The value of thedeclineOnAllDevicesfield indicating whether an incoming call should be declined on all devices.
DeclineOptions declineOptions = DeclineOptions.builder().setDeclineOnAllDevices(true).build();
boolean isDeclineOnAllDevicesEnabled = declineOptions.isDeclineOnAllDevices();Setter for the declineOnAllDevices field.
-
declineOnAllDevices:boolean-trueif an incoming call should be declined on all devices. Disabled by default.
-
DeclineOptions.DeclineOptionsBuilder- Instance of the builder.
DeclineOptions.DeclineOptionsBuilder declineOptionsBuilder = DeclineOptions.builder().setDeclineOnAllDevices(true);Builds a new instance of the DeclineOptions.
none
-
DeclineOptions- Instance of theDeclineOptions.
DeclineOptions.DeclineOptionsBuilder declineOptionsBuilder = DeclineOptions.builder();
DeclineOptions declineOptions = declineOptionsBuilder.build();