EVSEConnector

public struct EVSEConnector : Hashable

EVSE connector.

  • id

    HERE ID of the connector.

    Declaration

    Swift

    public var id: String?
  • CPO ID of the connector.

    Declaration

    Swift

    public var cpoId: String?
  • Connector type ID. For more information on the current connector types, see resource-type-connector-types.html.

    Declaration

    Swift

    public var typeId: String?
  • Maximum charge power of connector in kW.

    Declaration

    Swift

    public var maxPowerInKilowatts: Double?
  • Creates a new instance.

    Declaration

    Swift

    public init(id: String? = nil, cpoId: String? = nil, typeId: String? = nil, maxPowerInKilowatts: Double? = nil)