BDKIncomingCallHandlingIntent
Objective-C
@interface BDKIncomingCallHandlingIntent : NSObject <BDKIntent>
Swift
class BDKIncomingCallHandlingIntent : NSObject, BDKIntent
Represents the intent of handling a incoming call.
When the sdk detects an incoming call has been received, you should create an intent instance and hand it to a BDKCallViewController
.
-
Initialize an instance of
BDKIncomingCallHandlingIntent
classDeclaration
Objective-C
- (nonnull instancetype)init;
Swift
init()
Return Value
An initialized instance of
BDKIncomingCallHandlingIntent
class