BCXCallEndReason
Objective-C
enum BCXCallEndReason {}
Swift
enum BCXCallEndReason : Int
An enumeration representing the possible call end reasons.
-
Call has ended but the reason is unknown.
Declaration
Objective-C
BCXCallEndReasonUnknown = -1Swift
case unknown = -1 -
Call is not ended.
Declaration
Objective-C
BCXCallEndReasonNoneSwift
case none = 0 -
Call has been hung up.
Declaration
Objective-C
BCXCallEndReasonHangUpSwift
case hangUp = 1 -
Call has been declined.
Declaration
Objective-C
BCXCallEndReasonDeclinedSwift
case declined = 2 -
Call has been answered or declined on another device.
Declaration
Objective-C
BCXCallEndReasonAnsweredOnAnotherDeviceSwift
case answeredOnAnotherDevice = 3 -
Call has ended because the opponent has disconnected.
Declaration
Objective-C
BCXCallEndReasonUserDisconnectedSwift
case userDisconnected = 4 -
Call has ended because the opponent did not join the room in time.
Declaration
Objective-C
BCXCallEndReasonTimedOutSwift
case timedOut = 5 -
Call has ended because of an error.
Declaration
Objective-C
BCXCallEndReasonErrorSwift
case error = 6
View on GitHub
BCXCallEndReason Enumeration Reference