EVChargingPoolDetails
public struct EVChargingPoolDetails : Hashable
Electric vehicle charging pool details.
-
Indicates if the Place offers EV charging to customer or the general public.
Declaration
Swift
public var evChargingOnSite: Bool? -
The name of the EV Network that operates the charging station. Note: not all stations participate in a network.
Declaration
Swift
public var evNetwork: String? -
Represents the party of ownership provided by some suppliers.
Declaration
Swift
public var ownerInformation: String? -
Indicates if the charging stations can be reserved. Note: Reservable charging stations operate on a first-come/first served basis.
Declaration
Swift
public var reservable: Bool? -
Indicates the total number of stations available on the charging pool.
Declaration
Swift
public var totalNumberOfStations: UInt32? -
Creates a new instance. For offline EV rich attributes, also enable
LayerConfiguration.Feature.evinSDKOptions.layerConfiguration.Declaration
Swift
public init(evChargingOnSite: Bool? = nil, evNetwork: String? = nil, ownerInformation: String? = nil, reservable: Bool? = nil, totalNumberOfStations: UInt32? = nil)