BCXDeclineReason
Objective-C
enum BCXDeclineReason {}
Swift
enum BCXDeclineReason : Int
An enumeration representing the possible decline reasons.
-
Call has been declined but the reason is unknown.
Declaration
Objective-C
BCXDeclineReasonUnknown = -1
Swift
case unknown = -1
-
Call has not been declined.
Declaration
Objective-C
BCXDeclineReasonNone
Swift
case none = 0
-
Call has been declined because of do not disturb.
Declaration
Objective-C
BCXDeclineReasonDoNotDisturb
Swift
case doNotDisturb = 1
-
Call has been declined because of no answer.
Declaration
Objective-C
BCXDeclineReasonNoAnswer
Swift
case noAnswer = 2
-
Call has been declined because of an error.
Declaration
Objective-C
BCXDeclineReasonError
Swift
case error = 3