ChargingInformation
data class ChargingInformation(val targetCharge: Energy, val chargingTime: Duration, val chargingParkUuid: UUID, val connectorDetails: ConnectorDetails, val chargingPower: Power? = null)
Represents the information on how much to charge at a charging station.
Parameters
targetCharge
Desired charge when leaving the charging station.
chargingTime
Time needed to charge to targetCharge.
chargingParkUuid
Uuid of the charging park.
connectorDetails
Describes details of the charging connection which should be used at this charging stop.
chargingPower
The rated power of the charging park ConnectorDetails.ratedPower as limited by the charging capabilities of the vehicle.
Constructors
Link copied to clipboard
constructor(targetCharge: Energy, chargingTime: Duration, chargingParkUuid: UUID, connectorDetails: ConnectorDetails, chargingPower: Power? = null)