ocpp 0.24.1
A C++ implementation of the Open Charge Point Protocol
StatusNotification.hpp
1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2020 - 2024 Pionix GmbH and Contributors to EVerest
3// This code is generated using the generator in 'src/code_generator/common`, please do not edit manually
4
5#ifndef OCPP_V16_STATUSNOTIFICATION_HPP
6#define OCPP_V16_STATUSNOTIFICATION_HPP
7
8#include <nlohmann/json_fwd.hpp>
9#include <optional>
10
11#include <ocpp/common/types.hpp>
12#include <ocpp/v16/ocpp_enums.hpp>
13#include <ocpp/v16/ocpp_types.hpp>
14
15namespace ocpp {
16namespace v16 {
17
20 int32_t connectorId;
21 ChargePointErrorCode errorCode;
22 ChargePointStatus status;
23 std::optional<CiString<50>> info;
24 std::optional<ocpp::DateTime> timestamp;
25 std::optional<CiString<255>> vendorId;
26 std::optional<CiString<50>> vendorErrorCode;
27
30 std::string get_type() const override;
31};
32
34void to_json(json& j, const StatusNotificationRequest& k);
35
37void from_json(const json& j, StatusNotificationRequest& k);
38
41std::ostream& operator<<(std::ostream& os, const StatusNotificationRequest& k);
42
45
48 std::string get_type() const override;
49};
50
52void to_json(json& j, const StatusNotificationResponse& k);
53
55void from_json(const json& j, StatusNotificationResponse& k);
56
59std::ostream& operator<<(std::ostream& os, const StatusNotificationResponse& k);
60
61} // namespace v16
62} // namespace ocpp
63
64#endif // OCPP_V16_STATUSNOTIFICATION_HPP
Parent structure for all OCPP messages supported by this implementation.
Definition: types.hpp:30
Contains a OCPP StatusNotification message.
Definition: StatusNotification.hpp:19
std::string get_type() const override
Provides the type of this StatusNotification message as a human readable string.
Definition: StatusNotification.cpp:16
Contains a OCPP StatusNotificationResponse message.
Definition: StatusNotification.hpp:44
std::string get_type() const override
Provides the type of this StatusNotificationResponse message as a human readable string.
Definition: StatusNotification.cpp:70