TNEntityEvseStatus

@objc
public enum TNEntityEvseStatus : Int, Codable, RawRepresentable

The status of an EVSE. Refer https://github.com/ocpi/ocpi/blob/master/mod_locations.asciidoc#mod_locations_status_enum

  • The EVSE/Connector is able to start a new charging session.

    Declaration

    Swift

    case available
  • The EVSE/Connector is not accessible because of a physical barrier, i.e. a car.

    Declaration

    Swift

    case blocked
  • The EVSE/Connector is in use.

    Declaration

    Swift

    case charging
  • The EVSE/Connector is not yet active or it is no longer available (deleted).

    Declaration

    Swift

    case inoperative
  • The EVSE/Connector is currently out of order.

    Declaration

    Swift

    case outOfOrder
  • The EVSE/Connector is planned, will be operating soon.

    Declaration

    Swift

    case planned
  • The EVSE/Connector was discontinued/removed.

    Declaration

    Swift

    case removed
  • The EVSE/Connector is reserved for a particular EV driver and is unavailable for other drivers. No status information available (also used when offline).

    Declaration

    Swift

    case reserved
  • No status information available (also used when offline).

    Declaration

    Swift

    case unknown
  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Declaration

    Swift

    public init?(rawValue: RawValue)