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 = -1Swift
case unknown = -1 -
Call has not been declined.
Declaration
Objective-C
BCXDeclineReasonNoneSwift
case none = 0 -
Call has been declined because of do not disturb.
Declaration
Objective-C
BCXDeclineReasonDoNotDisturbSwift
case doNotDisturb = 1 -
Call has been declined because of no answer.
Declaration
Objective-C
BCXDeclineReasonNoAnswerSwift
case noAnswer = 2 -
Call has been declined because of an error.
Declaration
Objective-C
BCXDeclineReasonErrorSwift
case error = 3
View on GitHub
BCXDeclineReason Enumeration Reference