ChargingStatus

public enum ChargingStatus : UInt8, Codable

Charging Status

  • Unknown

    Declaration

    Swift

    case unknown = 0
  • Not chargeable

    Declaration

    Swift

    case notChargeable = 1
  • Battery not charging

    Declaration

    Swift

    case notCharging = 2
  • Battery is charging

    Declaration

    Swift

    case charging = 3
  • String Value for the Enum

    Declaration

    Swift

    public var description: String { get }