ChargingPark
public struct ChargingPark : Hashable
Contains information about an EV charging park.
Important
This is a Public Preview API. It may be changed or removed at any time.-
Creates a new charging park with a list of
ConnectorDetailsinstances.Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public init(connectors: [ConnectorDetails], paymentOptions: [PaymentOptions] = []) -
Creates a new charging park with a list of
ChargingStationinstances.Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public init(chargingStations: [ChargingStation], paymentOptions: [PaymentOptions] = [])Parameters
chargingStationsThe list of charging stations available in the charging park.
paymentOptionsThe list of payment options supported by the EV POI.
-
Describes the payment options supported by a charging point.
See moreImportant
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public struct PaymentOptions : Hashable
-
Access type of the EV POI station.
See moreImportant
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public enum AccessType : CaseIterable -
A list of
ChargingStationinstances. AChargingStationcontains a list ofChargingPoint, which further containsConnectorDetails.Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public let chargingStations: [ChargingStation]? -
The list of payment options supported by the EV POI.
Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public var paymentOptions: [PaymentOptions] { get } -
A list of
ConnectorDetailsof the charging park.Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public var connectors: [ConnectorDetails] { get }
TomTom SDK for iOS (0.66.0)
ChargingPark