SignalStrength

@objc
public enum SignalStrength : Int, CaseIterable, CustomStringConvertible

SignalStrength describes the signal strength of an attendee for audio.

  • The attendee has no signal

    Declaration

    Swift

    case none = 0
  • low

    The attendee has low signal

    Declaration

    Swift

    case low = 1
  • The attendee has high signal

    Declaration

    Swift

    case high = 2
  • Declaration

    Swift

    public var description: String { get }