Level
public enum Level : UInt8, Codable
Battery Level
-
Unknown
Declaration
Swift
case unknown = 0
-
Battery level not supported
Declaration
Swift
case notSupported = 1
-
Battery level good
Declaration
Swift
case goodLevel = 2
-
Battery level critically low
Declaration
Swift
case criticallyLow = 3
-
String Value for the Enum
Declaration
Swift
public var description: String { get }