(HLC) High Level Communication Charging

HlcChargingUpdate

Topics: josev/cs and iso15118/ocpp. Used to indicate that we are under a 15118 session and not a Basic Charging one. It may also be used to indicate that the session is paused or resumed charging.

type

object

properties

  • id

type

string

format

uuid

  • name

const

hlc_charging

  • type

const

update

  • data

type

object

properties

  • evse_id

type

string

  • status

type

boolean

  • action

type

string

enum

pause, resume

Example:

{
    "id": "8351e93e-c4f7-4b89-bb0b-d3965ccc4e04",
    "name": "hlc_charging",
    "type": "update",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "status": True, # or False
        "action": "pause" # or "resume", OPTIONAL
    }
}