ConnectorDetails

data class ConnectorDetails(    val connectorType: String,     val ratedPowerKw: Double?,     val currentA: Int?,     val currentType: String = "",     val voltageV: Int?)

Information about the connectors available in the ChargingPark.

Parameters

connectorType

Type of connector available at the Electric Vehicle Station.

ratedPowerKw

Rated power of the connector in kilowatts (kW).

currentA

Current value of the connector in amperes (A).

currentType

Electric current type of the connector.

voltageV

Voltage of the connector in Volts (V).

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun ConnectorDetails(    connectorType: String,     ratedPowerKw: Double?,     currentA: Int?,     currentType: String = "",     voltageV: Int?)

Properties

Link copied to clipboard
val connectorType: String
Link copied to clipboard
val currentA: Int?
Link copied to clipboard
val currentType: String
Link copied to clipboard
val ratedPowerKw: Double?
Link copied to clipboard
val voltageV: Int?