BCXCallType

Objective-C

enum BCXCallType {}

Swift

enum BCXCallType : UInt8

An enumeration representing the supported call types.

  • Call has support for audio and video.

    Declaration

    Objective-C

    BCXCallTypeAudioVideo = 0

    Swift

    case audioVideo = 0
  • Call has support for audio and video, but it starts out as an audio call, and can be upgraded to an audio / video call later on.

    Declaration

    Objective-C

    BCXCallTypeAudioUpgradable

    Swift

    case audioUpgradable = 1
  • Call has support for audio only and cannot be upgraded to an audio/video call.

    Declaration

    Objective-C

    BCXCallTypeAudioOnly

    Swift

    case audioOnly = 2