E_OCPP1_ChargePointStatus

TYPE E_OCPP1_ChargePointStatus :
(
    None := 0,     // Any status not covered by this implementation
    Available,     // When a Connector becomes available for a new user. (Operative)
    Preparing,     // When a Connector becomes no longer available for a new user but there is no ongoing Transaction. (Operative)
    Charging,      // When the contactor of a Connector closes, allowing the vehicle to charge. (Operative)
    SuspendedEVSE, // When the EV is connected to the EVSE but the EVSE is not offering energy to the EV. (Operative)
    SuspendedEV,   // When the EV is connected to the EVSE and the EVSE is offering energy but the EV is not taking any energy. (Operative)
    Finishing,     // When a Transaction has stopped at a Connector, but the Connector is not yet available for a new user. (Operative)
    Reserved,      // When a Connector becomes reserved as a result of a Reserve Now command. (Operative)
    Unavailable,   // When a Connector becomes unavailable as the result of a Change Availability command or an event upon which the Charge Point transitions to unavailable at its discretion. (Inoperative)
    Faulted        // When a Charge Point or connector has reported an error and is not available for energy delivery . (Inoperative)
) UDINT;
END_TYPE