VehicleEvChargingConnector

data class VehicleEvChargingConnector(    val chargingStationConnectorTypes: Set<VehicleEvChargingConnector.ChargingStationConnectorType>,     val electricCurrentType: VehicleEvChargingConnector.ElectricCurrentType,     val maxVoltage: Voltage?,     val maxCurrent: ElectricCurrent?,     val maxPower: Power?,     @FloatRange(from = 0.0, to = 1.0) val efficiency: Float?,     val baseLoad: Power?) : Parcelable

Specifies the physical shape and electrical characteristics of a charging connector.

Parameters

chargingStationConnectorTypes

The set of the charging station connectors compatible with the vehicle connector.

electricCurrentType

The type of the electric current of the charging connector.

maxVoltage

The maximum voltage of the charging connector. Can be null when this information is unknown.

maxCurrent

The maximum electric current of the charging connector. Can be null when this information is unknown.

maxPower

The maximum charging power. Can be null when this information is unknown.

efficiency

The ratio between power delivered to the vehicle and supplied by the charging station. This ranges linearly from 0.0 for no power delivered at all, to 1.0 for perfect efficiency. Can be null when this information is unknown.

baseLoad

The base load of the charging connector.

Constructors

Link copied to clipboard
fun VehicleEvChargingConnector(    chargingStationConnectorTypes: Set<VehicleEvChargingConnector.ChargingStationConnectorType>,     electricCurrentType: VehicleEvChargingConnector.ElectricCurrentType,     maxVoltage: Voltage?,     maxCurrent: ElectricCurrent?,     maxPower: Power?,     @FloatRange(from = 0.0, to = 1.0) efficiency: Float?,     baseLoad: Power?)

Types

Link copied to clipboard
data class ChargingStationConnectorType(val id: String) : Parcelable

A charging station's physical connector type.

Link copied to clipboard
data class ElectricCurrentType(val id: String) : Parcelable

The type of electric current of the charging connector.

Properties

Link copied to clipboard
val baseLoad: Power?
Link copied to clipboard
val efficiency: Float?
Link copied to clipboard
Link copied to clipboard
val maxCurrent: ElectricCurrent?
Link copied to clipboard
val maxPower: Power?
Link copied to clipboard
val maxVoltage: Voltage?

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)