ChargingPark
public struct ChargingPark
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
ConnectorDetails
instances.Declaration
Swift
public init(connectors: [ConnectorDetails])
Parameters
connectors
The list of connectors available in the charging park.
-
Creates a new charging park with a list of
ChargingStation
instances.Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public init(chargingStations: [ChargingStation])
Parameters
chargingStations
The list of charging stations available in the charging park.
-
Describes the payment options supported by a charging point.
Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public struct PaymentOptions
-
Access type of the EV POI station.
Important
This is a Public Preview API. It may be changed or removed at any time.Declaration
Swift
public enum AccessType : CaseIterable
-
A list of
ChargingStation
instances. AChargingStation
contains 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]?
-
A list of
ConnectorDetails
of the charging park.Declaration
Swift
public var connectors: [ConnectorDetails] { get }