Connector

data class Connector(    val connectorType: ConnectorType,     val currentType: CurrentType? = null,     val ratedPowerKW: Double? = null,     val voltageV: Int? = null,     val currentA: Double? = null)

The charging connector data.

Parameters

connectorType

The charging connector type.

currentType

Current type.

ratedPowerKW

Rated charging power in kilowatts.

voltageV

Voltage in volts.

currentA

Amperage in amperes.

Constructors

Link copied to clipboard
fun Connector(    connectorType: ConnectorType,     currentType: CurrentType? = null,     ratedPowerKW: Double? = null,     voltageV: Int? = null,     currentA: Double? = null)

Properties

Link copied to clipboard
val connectorType: ConnectorType
Link copied to clipboard
val currentA: Double? = null
Link copied to clipboard
val currentType: CurrentType? = null
Link copied to clipboard
val ratedPowerKW: Double? = null
Link copied to clipboard
val voltageV: Int? = null