5#ifndef OCPP_V2_CUSTOMERINFORMATION_HPP
6#define OCPP_V2_CUSTOMERINFORMATION_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<CertificateHashDataType> customerCertificate;
25 std::optional<IdToken> idToken;
26 std::optional<CiString<64>> customerIdentifier;
30 std::string
get_type()
const override;
45 CustomerInformationStatusEnum status;
46 std::optional<CustomData> customData;
47 std::optional<StatusInfo> statusInfo;
51 std::string
get_type()
const override;
Parent structure for all OCPP messages supported by this implementation.
Definition: types.hpp:30