-
Notifications
You must be signed in to change notification settings - Fork 3
IncomingApplicationCall
Adnan Elezović edited this page May 31, 2023
·
2 revisions
extends
ApplicationCall
from: String
fromDisplayName: String?
accept()
accept(_ applicationCallOptions: ApplicationCallOptions)
decline()
decline(_ declineOptions: DeclineOptions)
Read-only string property containing the identifier of the caller that made the call.
Read-only string property containing an optional display identifier of the caller that made the call.
Accepts incoming application call, which ends up in the call being connected to your application.
none
N/A
incomingApplicationCall.accept()
Accepts incoming application call, which ends up in the call being connected to your application. This method overrides application call options and lets you accept call with different ones.
-
applicationCallOptions
:ApplicationCallOptions
- Application call options.
N/A
let applicationCallOptions = ApplicationCallOptions(video: true)
incomingApplicationCall.accept(applicationCallOptions)
Declines incoming call.
none
N/A
incomingApplicationCall.decline()
Declines an incoming call, with an option do decline it on all devices.
-
declineOptions
:DeclineOptions
- Optional additional option to decline an incoming call on all devices.
N/A
incomingApplicationCall.decline(DeclineOptions(true))