-
Notifications
You must be signed in to change notification settings - Fork 2
DeclineOptionsBuilder
Ajša Terko edited this page Jan 30, 2025
·
2 revisions
setDeclineOnAllDevices(_declineOnAllDevices: boolean): DeclineOptionsBuilderbuild(): DeclineOptions
Setter for the declineOnAllDevices field.
-
declineOnAllDevices:boolean-falseby 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();