BDKCallType
Objective-C
enum BDKCallType : unsigned char {}
Swift
enum CallType : UInt8
An enumeration representing the supported call types.
-
Call has support for audio and video.
Declaration
Objective-C
BDKCallTypeAudioVideo = 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
BDKCallTypeAudioUpgradable
Swift
case audioUpgradable = 1
-
Call has support for audio only and cannot be upgraded to an audio/video call.
Declaration
Objective-C
BDKCallTypeAudioOnly
Swift
case audioOnly = 2