EngineType

sealed class EngineType

Represents different types of vehicle engines and their associated criteria. Used specify engine-related search criteria in the configuration. Depending on the engine type, you can provide further details like the types of connectors for electric vehicles or fuel types for combustion vehicles.

Representing different types of vehicle engines and their associated criteria.

Use this to specify engine-related search criteria in the configuration. Depending on the engine type, you can provide further details like the types of connectors for electric vehicles or fuel types for combustion vehicles.

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

Inheritors

Types

Link copied to clipboard
class Combustion(val fuelTypes: Set<FuelType>) : EngineType

Represents vehicles with combustion engines.

Link copied to clipboard
class Electric(val connectors: Set<ConnectorType>) : EngineType

Represents electric vehicles.