EVSearchResult
public struct EVSearchResult
A response structure that contains EV search results.
Important
This is a Public Preview API. It may be changed or removed at any time.-
init(id:names: phones: emails: place: chargingStations: openingHours: timeZone: paymentOptions: accessType: ) Creates an
EVSearchOptionsto perform EV search.Declaration
Swift
public init( id: POIID, names: [String] = [], phones: [String] = [], emails: [String] = [], place: Place, chargingStations: [ChargingStation] = [], openingHours: OpeningHours? = nil, timeZone: TimeZone? = nil, paymentOptions: [ChargingPark.PaymentOptions] = [], accessType: ChargingPark.AccessType? = nil )Parameters
idThe
POIIDthat includes the EV POI identifier.namesThe names of the EV POI result.
phonesThe phone numbers of the EV POI result`
emailsThe emails of the EV POI result`
placeThe
Placeof the EV POI result.chargingStationsA list of
ChargingStations that hold information related to the EV POI.openingHoursThe opening hours of the EV POI.
timeZoneThe time zone of the EV POI.
paymentOptionsA list of payment options supported by the EV POI.
accessTypeA list of access types of the EV POI.
-
The names of the EV POI result.
Declaration
Swift
public let names: [String] -
The phone numbers of the EV POI result.
Declaration
Swift
public let phones: [String] -
The emails of the EV POI result.
Declaration
Swift
public let emails: [String] -
A list of
ChargingStations that hold information related to the EV POI.Declaration
Swift
public let chargingStations: [ChargingStation] -
The opening hours of the EV POI.
Declaration
Swift
public let openingHours: OpeningHours? -
The time zone of the EV POI.
Declaration
Swift
public let timeZone: TimeZone? -
A list of payment options supported by the EV POI.
Declaration
Swift
public let paymentOptions: [ChargingPark.PaymentOptions] -
Access type of the EV POI.
Declaration
Swift
public let accessType: ChargingPark.AccessType?
TomTom SDK for iOS (0.53.1)
EVSearchResult