ChargingStation (API Reference)
Class ChargingStation
Data for an electric vehicle charging station.
-
Field Summary
FieldsModifier and TypeFieldDescriptionCharging station brand.Charging station charge-point-operator.Details of the connector suggested to be used.Identifier of this charging station.List of matched E-Mobility Service Providers.Human readable name of this charging station. -
Constructor Summary
ConstructorsConstructorDescriptionChargingStation(String id, String name, ChargingConnectorAttributes connectorAttributes) Creates a new instance.ChargingStation(String id, String name, ChargingConnectorAttributes connectorAttributes, NameID brand, NameID chargePointOperator, List<NameID> matchingEMobilityServiceProviders) Creates a new instance. -
Method Summary
-
Field Details
-
id
Identifier of this charging station. It can only be null when custom charging stations from non-HERE datasets have been injected on the HERE platform. By default, with HERE datasets it is guranteed to be not null.
-
name
Human readable name of this charging station. It can be null when there is no name associated with the station.
-
connectorAttributes
Details of the connector suggested to be used.
-
brand
Charging station brand.
NameID.namereflect to charging station brand name.NameID.idreflect to charging station brand unique ID. -
chargePointOperator
Charging station charge-point-operator.
NameID.namereflect to charge-point-operator name.NameID.idreflect to charge-point-operator ID. -
matchingEMobilityServiceProviders
List of matched E-Mobility Service Providers. Populated only when
ElectricVehicleOptions.evMobilityServiceProviderPreferenceswas set. This list reflects the subset of E-Mobility Service Providers supported by the charging station, from the list specified in the request parameterElectricVehicleOptions.evMobilityServiceProviderPreferences.NameID.namein each list item reflect to E-Mobility Service Provider name.NameID.idin each list item reflect to E-Mobility Service Provider id.
-
-
Constructor Details
-
ChargingStation
public ChargingStation(@Nullable String id, @Nullable String name, @Nullable ChargingConnectorAttributes connectorAttributes) Creates a new instance.
- Parameters:
id-Identifier of this charging station. It can only be null when custom charging stations from non-HERE datasets have been injected on the HERE platform. By default, with HERE datasets it is guranteed to be not null.
name-Human readable name of this charging station. It can be null when there is no name associated with the station.
connectorAttributes-Details of the connector suggested to be used.
-
ChargingStation
public ChargingStation(@Nullable String id, @Nullable String name, @Nullable ChargingConnectorAttributes connectorAttributes, @Nullable NameID brand, @Nullable NameID chargePointOperator, @NonNull List<NameID> matchingEMobilityServiceProviders) Creates a new instance.
- Parameters:
id-Identifier of this charging station. It can only be null when custom charging stations from non-HERE datasets have been injected on the HERE platform. By default, with HERE datasets it is guranteed to be not null.
name-Human readable name of this charging station. It can be null when there is no name associated with the station.
connectorAttributes-Details of the connector suggested to be used.
brand-Charging station brand.
NameID.namereflect to charging station brand name.NameID.idreflect to charging station brand unique ID.chargePointOperator-Charging station charge-point-operator.
NameID.namereflect to charge-point-operator name.NameID.idreflect to charge-point-operator ID.matchingEMobilityServiceProviders-List of matched E-Mobility Service Providers. Populated only when
ElectricVehicleOptions.evMobilityServiceProviderPreferenceswas set. This list reflects the subset of E-Mobility Service Providers supported by the charging station, from the list specified in the request parameterElectricVehicleOptions.evMobilityServiceProviderPreferences.NameID.namein each list item reflect to E-Mobility Service Provider name.NameID.idin each list item reflect to E-Mobility Service Provider id.
-
-
Method Details