CallType

@available(iOS 12.0, *)
@objc(BDKCallType)
public enum CallType : UInt, CustomStringConvertible

An enumeration representing the supported call types.

  • Call has support for audio and video.

    Declaration

    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

    Swift

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

    Declaration

    Swift

    case audioOnly