ChargingInformation

class ChargingInformation(val targetCharge: Energy, val chargingTime: Duration, val chargingParkUuid: UUID, val connectorDetails: ConnectorDetails, val chargingPower: Power? = null)

Specifies charging connection, staying time and other information about a charging stop.

Throws

Constructors

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

Properties

Link copied to clipboard

The UUID of the charging park.

Link copied to clipboard
val chargingPower: Power? = null

The rated power of the charging station limited by the charging capabilities of the vehicle.

Link copied to clipboard

The calculated time needed to charge to targetCharge.

Link copied to clipboard

The charging connection which should be used at this charging stop.

Link copied to clipboard

The desired charge when leaving the charging station.

Functions

Link copied to clipboard
operator fun component1(): Energy
Link copied to clipboard
operator fun component2(): Duration
Link copied to clipboard
operator fun component3(): UUID
Link copied to clipboard
Link copied to clipboard
operator fun component5(): Power?
Link copied to clipboard
fun copy(targetCharge: Energy = this.targetCharge, chargingTime: Duration = this.chargingTime, chargingParkUuid: UUID = this.chargingParkUuid, connectorDetails: ConnectorDetails = this.connectorDetails, chargingPower: Power? = this.chargingPower): ChargingInformation
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String