-
Notifications
You must be signed in to change notification settings - Fork 0
DeclineOptionsBuilder
Ajša Terko edited this page Feb 22, 2023
·
1 revision
setDeclineOnAllDevices(_declineOnAllDevices: boolean): DeclineOptionsBuilder
-
build(): DeclineOptions
Setter for the declineOnAllDevices
field.
-
declineOnAllDevices
:boolean
-false
by default, meaning this call will only be rejected on the current device, while other devices receiving this call won't be affected and may still receive the call.
-
DeclineOptionsBuilder
- Instance of the builder.
let declineOptionsBuilder = DeclineOptions.builder();
declineOptionsBuilder.setDeclineOnAllDevices(true);
Builds a new instance of the DeclineOptions
.
none
-
DeclineOptions
- Instance of theDeclineOptions
.
let declineOptionsBuilder = DeclineOptions.builder();
let declineOptions = declineOptionsBuilder.build();