ChargingInformation

data class ChargingInformation(    val targetCharge: Energy,     val chargingTime: Duration,     val chargingParkUuid: UUID,     val connectorDetails: ConnectorDetails? = 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.

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? = null)

Properties

Link copied to clipboard
val chargingParkUuid: UUID
Link copied to clipboard
val chargingTime: Duration
Link copied to clipboard
val connectorDetails: ConnectorDetails? = null
Link copied to clipboard
val targetCharge: Energy