5#ifndef OCPP_V16_GETLOG_HPP
6#define OCPP_V16_GETLOG_HPP
8#include <nlohmann/json_fwd.hpp>
11#include <ocpp/common/types.hpp>
12#include <ocpp/v16/ocpp_enums.hpp>
13#include <ocpp/v16/ocpp_types.hpp>
23 std::optional<int32_t> retries;
24 std::optional<int32_t> retryInterval;
28 std::string
get_type()
const override;
39std::ostream& operator<<(std::ostream& os,
const GetLogRequest& k);
43 LogStatusEnumType status;
44 std::optional<CiString<255>> filename;
48 std::string
get_type()
const override;
59std::ostream& operator<<(std::ostream& os,
const GetLogResponse& k);
Parent structure for all OCPP messages supported by this implementation.
Definition: types.hpp:30
Contains a OCPP GetLog message.
Definition: GetLog.hpp:19
std::string get_type() const override
Provides the type of this GetLog message as a human readable string.
Definition: GetLog.cpp:16
Contains a OCPP GetLogResponse message.
Definition: GetLog.hpp:42
std::string get_type() const override
Provides the type of this GetLogResponse message as a human readable string.
Definition: GetLog.cpp:58
Definition: ocpp_types.hpp:98