5#ifndef OCPP_V2_GETLOG_HPP
6#define OCPP_V2_GETLOG_HPP
8#include <nlohmann/json_fwd.hpp>
11#include <ocpp/common/types.hpp>
12#include <ocpp/v2/ocpp_enums.hpp>
13#include <ocpp/v2/ocpp_types.hpp>
23 std::optional<CustomData> customData;
24 std::optional<int32_t> retries;
25 std::optional<int32_t> retryInterval;
29 std::string
get_type()
const override;
40std::ostream& operator<<(std::ostream& os,
const GetLogRequest& k);
45 std::optional<CustomData> customData;
46 std::optional<StatusInfo> statusInfo;
47 std::optional<CiString<255>> filename;
51 std::string
get_type()
const override;
62std::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:43
std::string get_type() const override
Provides the type of this GetLogResponse message as a human readable string.
Definition: GetLog.cpp:64
Definition: ocpp_types.hpp:287