ocpp 0.24.1
A C++ implementation of the Open Charge Point Protocol
GetLocalListVersion.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_GETLOCALLISTVERSION_HPP
6#define OCPP_V16_GETLOCALLISTVERSION_HPP
7
8#include <nlohmann/json_fwd.hpp>
9
10#include <ocpp/v16/ocpp_types.hpp>
11
12namespace ocpp {
13namespace v16 {
14
17
20 std::string get_type() const override;
21};
22
24void to_json(json& j, const GetLocalListVersionRequest& k);
25
27void from_json(const json& j, GetLocalListVersionRequest& k);
28
31std::ostream& operator<<(std::ostream& os, const GetLocalListVersionRequest& k);
32
35 int32_t listVersion;
36
39 std::string get_type() const override;
40};
41
43void to_json(json& j, const GetLocalListVersionResponse& k);
44
46void from_json(const json& j, GetLocalListVersionResponse& k);
47
50std::ostream& operator<<(std::ostream& os, const GetLocalListVersionResponse& k);
51
52} // namespace v16
53} // namespace ocpp
54
55#endif // OCPP_V16_GETLOCALLISTVERSION_HPP
Parent structure for all OCPP messages supported by this implementation.
Definition: types.hpp:30
Contains a OCPP GetLocalListVersion message.
Definition: GetLocalListVersion.hpp:16
std::string get_type() const override
Provides the type of this GetLocalListVersion message as a human readable string.
Definition: GetLocalListVersion.cpp:15
Contains a OCPP GetLocalListVersionResponse message.
Definition: GetLocalListVersion.hpp:34
std::string get_type() const override
Provides the type of this GetLocalListVersionResponse message as a human readable string.
Definition: GetLocalListVersion.cpp:42