BDKCallType

Objective-C

enum BDKCallType {}

Swift

enum BDKCallType : UInt8

An enumeration of the types of call the sdk can perform.

  • The call is audio/video.

    Declaration

    Objective-C

    BDKCallTypeAudioVideo = 0

    Swift

    case audioVideo = 0
  • The call starts as an audio call and can be upgraded to a video call later on.

    Declaration

    Objective-C

    BDKCallTypeAudioUpgradable

    Swift

    case audioUpgradable = 1
  • The call is audio only and cannot be upgraded to video.

    Declaration

    Objective-C

    BDKCallTypeAudioOnly

    Swift

    case audioOnly = 2
  • Deprecated

    Use BDKCallTypeAudioVideo instead

    The call is audio/video.

    Declaration

    Objective-C

    BDKAudioVideoCallType = BDKCallTypeAudioVideo

    Swift

    static var BDKAudioVideoCallType: BDKCallType { get }
  • Deprecated

    Use BDKCallTypeAudioUpgradable instead

    The call starts as an audio call and can be upgraded to a video call later on.

    Declaration

    Objective-C

    BDKAudioUpgradableCallType = BDKCallTypeAudioUpgradable

    Swift

    static var BDKAudioUpgradableCallType: BDKCallType { get }
  • Deprecated

    Use BDKCallTypeAudioOnly instead

    The call is audio only and cannot be upgraded to video.

    Declaration

    Objective-C

    BDKAudioOnlyCallType = BDKCallTypeAudioOnly

    Swift

    static var BDKAudioOnlyCallType: BDKCallType { get }