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.-
Creates an
EVSearchOptions
to perform EV search.Declaration
Swift
public init( id: POIID, name: String? = nil, phone: String? = nil, place: Place, chargingStations: [ChargingStation] = [], openingHours: OpeningHours? = nil, timeZone: TimeZone? = nil, paymentOptions: [ChargingPark.PaymentOptions] = [], accessType: ChargingPark.AccessType? = nil )
Parameters
id
The
POIID
that includes the EV POI identifier.name
The name of the EV POI result.
phone
The phone number of the EV POI result`
place
The
Place
of the EV POI result.chargingStations
A list of
ChargingStation
s that hold information related to the EV POI.openingHours
The opening hours of the EV POI.
timeZone
The time zone of the EV POI.
paymentOptions
A list of payment options supported by the EV POI.
accessType
A list of access types of the EV POI.
-
The name of the EV POI result.
Declaration
Swift
public let name: String?
-
The phone number of the EV POI result.
Declaration
Swift
public let phone: String?
-
A list of
ChargingStation
s 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?