Taxi

data class Taxi(    val maxSpeed: Speed = Speed.kilometersPerHour(0),     val isCommercial: Boolean = true,     val electricEngine: ElectricEngine? = null,     val combustionEngine: CombustionEngine? = null) : Vehicle, Motorized

A vehicle of type taxi.

Important: This is a Public Preview API. It may be changed or removed at any time.

Parameters

maxSpeed

The taxi's maximum speed.

isCommercial

If true, the vehicle is used for commercial purposes and thus may not be allowed to drive on some roads.

electricEngine

The vehicle's electric engine for route and consumption calculation.

combustionEngine

The vehicle's combustion engine for route and consumption calculation.

Constructors

Link copied to clipboard
fun Taxi(    maxSpeed: Speed = Speed.kilometersPerHour(0),     isCommercial: Boolean = true,     electricEngine: ElectricEngine? = null,     combustionEngine: CombustionEngine? = null)

Properties

Link copied to clipboard
open override val combustionEngine: CombustionEngine? = null
Link copied to clipboard
open override val electricEngine: ElectricEngine? = null
Link copied to clipboard
open override val isCommercial: Boolean = true
Link copied to clipboard
open override val maxSpeed: Speed
Link copied to clipboard
val type: TravelMode