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. Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun ChargingInformation(targetCharge: Energy, chargingTime: Duration, chargingParkUuid: UUID, connectorDetails: ConnectorDetails, chargingPower: Power? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val chargingPower: Power? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard