EvSearchResult

class EvSearchResult(val id: PoiId, val name: String? = null, val phone: 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)

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, name: String? = null, phone: String? = null, place: Place? = null, chargingStations: List<ChargingStation> = emptyList(), openingHours: OpeningHours? = null, timeZone: TimeZone? = null, paymentOptions: List<PaymentOptions> = emptyList(), accessType: AccessType? = 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 id: PoiId

The PoiId object that includes the EV POI identifier.

Link copied to clipboard
val name: String? = null

Name of the EV POI result.

Link copied to clipboard

Opening hours for the EV POI.

Link copied to clipboard

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

Link copied to clipboard
val phone: String? = null

Phone number 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