Skip to content

DeclineOptionsBuilder

Ajša Terko edited this page Feb 22, 2023 · 1 revision

setDeclineOnAllDevices(declineOnAllDevices)

Description

Setter for the declineOnAllDevices field.

Arguments

  • 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.

Returns

Example

let declineOptionsBuilder = DeclineOptions.builder();
declineOptionsBuilder.setDeclineOnAllDevices(true);



build()

Description

Builds a new instance of the DeclineOptions.

Arguments

  • none

Returns

Example

let declineOptionsBuilder = DeclineOptions.builder();
let declineOptions = declineOptionsBuilder.build();

Tutorials

Migration guides

Reference documentation

Clone this wiki locally