corrected name RequestCDD to RequestCDDC

This commit is contained in:
Gulliver
2022-12-31 13:49:58 +01:00
committed by gittiver
parent 87386e1b65
commit 0e4c094eed
5 changed files with 25 additions and 20 deletions

View File

@ -100,14 +100,14 @@ struct Response {
virtual crow::json::wvalue to_json() const;
};
struct RequestCDDSerial {
struct RequestCDDCSerial {
unsigned int message_reference; /// Client internal message reference.
/// (Integer)
static tl::expected<RequestCDDSerial, eError>
static tl::expected<RequestCDDCSerial, eError>
from_string(const std::string &str);
};
struct ResponseCDDSerial : Response {
struct ResponseCDDCSerial : Response {
unsigned int cdd_serial;
crow::json::wvalue to_json() const override;