ChargingConnectorAttributes
public struct ChargingConnectorAttributes : Hashable
Details of the connector that is suggested to be used in the section’s
PostAction‘s for charging.
-
Power supplied by the suggested connector in kW.
Declaration
Swift
public var powerInKilowatts: Double -
Current of the suggested connector in Amperes.
Declaration
Swift
public var currentInAmperes: Double? -
Voltage of the suggested connector in Volts.
Declaration
Swift
public var voltageInVolts: Double? -
Supply type of the suggested connector.
Declaration
Swift
public var supplyType: ChargingSupplyType? -
Suggested connector for charging at this station.
Declaration
Swift
public var connectorType: ChargingConnectorType? -
Creates a new instance.
Declaration
Swift
public init(powerInKilowatts: Double, currentInAmperes: Double? = nil, voltageInVolts: Double? = nil, supplyType: ChargingSupplyType? = nil, connectorType: ChargingConnectorType? = nil)