ElectricEngine
data class ElectricEngine(val consumption: ElectricVehicleConsumption? = null, val efficiency: ElectricVehicleEfficiency? = null, val chargeLevel: ChargeLevel? = null, val chargingParameters: ChargingParameters? = null)
Represents the electric vehicle descriptor used during a route plan.
Note: The parameters consumption, efficiency and chargingParameters are not yet supported with the Orbis map.
Parameters
consumption
Specifies the consumption model of the electric vehicle.
efficiency
Specifies the efficiency of the engine.
chargeLevel
Specifies the current and maximum charge of the vehicle.
Constructors
Link copied to clipboard
constructor(consumption: ElectricVehicleConsumption? = null, efficiency: ElectricVehicleEfficiency? = null, chargeLevel: ChargeLevel? = null, chargingParameters: ChargingParameters? = null)