VolumeLevel
@objc
public enum VolumeLevel : Int, CaseIterable, CustomStringConvertible
VolumeLevel
describes the volume level of an attendee for audio.
-
The attendee is muted
Declaration
Swift
case muted = -1
-
The attendee is not speaking
Declaration
Swift
case notSpeaking = 0
-
The attendee is speaking at low volume
Declaration
Swift
case low = 1
-
The attendee is speaking at medium volume
Declaration
Swift
case medium = 2
-
The attendee is speaking at high volume
Declaration
Swift
case high = 3
-
Declaration
Swift
public var description: String { get }