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 = -1

    Swift

    case unknown = -1
  • Call is not ended.

    Declaration

    Objective-C

    BCXCallEndReasonNone

    Swift

    case none = 0
  • Call has been hung up.

    Declaration

    Objective-C

    BCXCallEndReasonHangUp

    Swift

    case hangUp = 1
  • Call has been declined.

    Declaration

    Objective-C

    BCXCallEndReasonDeclined

    Swift

    case declined = 2
  • Call has been answered or declined on another device.

    Declaration

    Objective-C

    BCXCallEndReasonAnsweredOnAnotherDevice

    Swift

    case answeredOnAnotherDevice = 3
  • Call has ended because the opponent has disconnected.

    Declaration

    Objective-C

    BCXCallEndReasonUserDisconnected

    Swift

    case userDisconnected = 4
  • Call has ended because the opponent did not join the room in time.

    Declaration

    Objective-C

    BCXCallEndReasonTimedOut

    Swift

    case timedOut = 5
  • Call has ended because of an error.

    Declaration

    Objective-C

    BCXCallEndReasonError

    Swift

    case error = 6