Point

@Since(version = 1)
@JsonClass(generateAdapter = true)
data class Point(val speed: Speed, val energy: Energy)

Data class representing a point in the consumption curve.

Constructors

Link copied to clipboard
constructor(speed: Speed, energy: Energy)

Properties

Link copied to clipboard
val energy: Energy

The energy in Wh/km.

Link copied to clipboard
val speed: Speed

The speed in km/h.