RecordingType

@objc(SBCRecordingType)
public enum RecordingType : Int, RawRepresentable, Codable

Undocumented

  • Declaration

    Swift

    public typealias RawValue = String
  • An option to record the video and audio of the remote user

    Since

    1.3.0

    Declaration

    Swift

    case remoteAudioAndVideo
  • An option to record the audio of the remote user.

    Since

    1.3.0

    Declaration

    Swift

    case remoteAudioOnly
  • An option to record both audios of the local and remote users.

    Since

    1.3.0

    Declaration

    Swift

    case localRemoteAudios
  • An option to record both audios of the local and remote users, and the video of the remote user.

    Since

    1.3.0

    Declaration

    Swift

    case localAudioRemoteAudioAndVideo
  • An option to record both audios of the local and remote users, and the video of the local user.

    Since

    1.3.0

    Declaration

    Swift

    case localAudioAndVideoRemoteAudio
  • Declaration

    Swift

    public var rawValue: String { get }
  • Declaration

    Swift

    public init?(rawValue: String)