EvSearchResult

class EvSearchResult(val id: PoiId, val names: List<String> = emptyList(), val phones: List<String> = emptyList(), val emails: List<String>? = null, val place: Place? = null, val chargingStations: List<ChargingStation> = emptyList(), val openingHours: OpeningHours? = null, val timeZone: TimeZone? = null, val paymentOptions: List<PaymentOptions> = emptyList(), val accessType: AccessType? = null, val detour: Detour? = null)

Describes the POI details of a single result item returned by the EV Search API.

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

Constructors

Link copied to clipboard
constructor(id: PoiId, names: List<String> = emptyList(), phones: List<String> = emptyList(), emails: List<String>? = null, place: Place? = null, chargingStations: List<ChargingStation> = emptyList(), openingHours: OpeningHours? = null, timeZone: TimeZone? = null, paymentOptions: List<PaymentOptions> = emptyList(), accessType: AccessType? = null, detour: Detour? = null)

Properties

Link copied to clipboard
val accessType: AccessType? = null

Access type of the EV POI station.

Link copied to clipboard

List of ChargingStation which hold information related to the EV POI.

Link copied to clipboard
val detour: Detour? = null

The detailed information about detour which should be taken to reach the electric vehicle search result position.

Link copied to clipboard
val emails: List<String>? = null

List containing the emails of the EV POI result. Null if no data is available.

Link copied to clipboard
val id: PoiId

The PoiId object that includes the EV POI identifier.

Link copied to clipboard

List containing the names of the EV POI result.

Link copied to clipboard

Opening hours for the EV POI.

Link copied to clipboard

List of PaymentOptions which hold information related to the EV POI.

Link copied to clipboard

List containing the phone numbers of the EV POI result.

Link copied to clipboard
val place: Place? = null

The Place object corresponding to the EV POI result.

Link copied to clipboard
val timeZone: TimeZone? = null

TimeZone information related to the openingHours for the EV POI.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String