Class EVSEInfo

java.lang.Object
com.here.sdk.search.EVSEInfo

public final class EVSEInfo extends Object

Represents an EVSE at the charging point. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

  • Field Details

    • uid

      @NonNull public String uid

      Uniquely identifies the EVSE within the CPOs platform (and suboperator platforms). For example a database ID or the actual "EVSE ID". This field can never be changed, modified or renamed. This is the 'technical' identification of the EVSE, not to be used as 'human readable' identification, use the field id for that.

    • id

      @Nullable public String id

      Human-readable globally unique identifier for the EVSE.

    • evseID

      @Nullable public String evseID

      Identifier compliant with the EVSE ID from eMI3 standard version V1.0.

    • status

      @NonNull public EVSEState status

      Status of the EVSE.

    • lastUpdated

      @NonNull public Date lastUpdated

      Timestamp when the status of this EVSE was last updated.

    • connectors

      @NonNull public List<EVChargingConnector> connectors

      List of available connectors on the EVSE. An operational EVSE should have at least one connector.

    • capabilities

      @NonNull public List<EVSECapability> capabilities

      Capabilities of the EVSE.

    • floorLevel

      @Nullable public String floorLevel

      Floor level on which the EVSE is located.

    • physicalReference

      @Nullable public String physicalReference

      A number or string printed on the outside of the EVSE for visual identification.

    • coordinates

      @Nullable public GeoCoordinates coordinates

      The geographic coordinates of the EVSE.

    • paymentSupports

      @NonNull public List<EVSEPaymentSupport> paymentSupports

      List of payment support functionalities on EVSE for ad-hoc customers (without pre-registration).

  • Constructor Details

    • EVSEInfo

      public EVSEInfo()

      Creates a new instance.

  • Method Details