SearchResultId

data class SearchResultId(    val id: String,     val source: Source,     val fuelPriceId: String = "",     val evConnectorAvailabilityId: String = "",     val parkingInformationId: String = "",     val geometryDataSourceId: String = "")

Identifier that represents the search result.

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

Parameters

id

Identifier. In combination with the source it uniquely identifies a search result.

source

The source of the result.

fuelPriceId

Optional source identifier which can be used for retrieving fuel price. This is applicable for fuel stations only.

evConnectorAvailabilityId

Optional source identifier which can be used for retrieving availability of Electric Vehicle (EV) connectors. This is applicable for EV stations only.

parkingInformationId

Optional source identifier which can be used for retrieving availability of parking spots. This is applicable for parking stations only.

geometryDataSourceId

Optional source identifier which can be used for retrieving geometries for search results.

Constructors

Link copied to clipboard
fun SearchResultId(    id: String,     source: Source,     fuelPriceId: String = "",     evConnectorAvailabilityId: String = "",     parkingInformationId: String = "",     geometryDataSourceId: String = "")

Properties

Link copied to clipboard
val evConnectorAvailabilityId: String
Link copied to clipboard
val fuelPriceId: String
Link copied to clipboard
val geometryDataSourceId: String
Link copied to clipboard
val id: String
Link copied to clipboard
val parkingInformationId: String
Link copied to clipboard
val source: Source