aboutsummaryrefslogtreecommitdiff
path: root/event-schemas/schema/core-event-schema/stripped_state.h
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-01 10:08:00 +0200
committerGitHub <noreply@github.com>2022-06-01 10:08:00 +0200
commit6c735f9f55b936e9de1497c2f5896f0a018d4227 (patch)
treefccc042d6af708ddf0d540ea1166e8ae68365ecb /event-schemas/schema/core-event-schema/stripped_state.h
parent49b0d191ab8917c61b28da3cfeaf1d28c143d5c8 (diff)
parentcd442611b19ec4a438d0847bf09b7bca99b494d3 (diff)
downloadlibquotient-6c735f9f55b936e9de1497c2f5896f0a018d4227.tar.gz
libquotient-6c735f9f55b936e9de1497c2f5896f0a018d4227.zip
#554: Fix update-api jobs
Diffstat (limited to 'event-schemas/schema/core-event-schema/stripped_state.h')
-rw-r--r--event-schemas/schema/core-event-schema/stripped_state.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/event-schemas/schema/core-event-schema/stripped_state.h b/event-schemas/schema/core-event-schema/stripped_state.h
new file mode 100644
index 00000000..742b0a56
--- /dev/null
+++ b/event-schemas/schema/core-event-schema/stripped_state.h
@@ -0,0 +1,44 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+#pragma once
+
+#include "converters.h"
+
+namespace Quotient {
+/// A stripped down state event, with only the `type`, `state_key`,
+/// `sender`, and `content` keys.
+struct StrippedStateEvent {
+ /// The `content` for the event.
+ QJsonObject content;
+
+ /// The `state_key` for the event.
+ QString stateKey;
+
+ /// The `type` for the event.
+ QString type;
+
+ /// The `sender` for the event.
+ QString sender;
+};
+
+template <>
+struct JsonObjectConverter<StrippedStateEvent> {
+ static void dumpTo(QJsonObject& jo, const StrippedStateEvent& pod)
+ {
+ addParam<>(jo, QStringLiteral("content"), pod.content);
+ addParam<>(jo, QStringLiteral("state_key"), pod.stateKey);
+ addParam<>(jo, QStringLiteral("type"), pod.type);
+ addParam<>(jo, QStringLiteral("sender"), pod.sender);
+ }
+ static void fillFrom(const QJsonObject& jo, StrippedStateEvent& pod)
+ {
+ fromJson(jo.value("content"_ls), pod.content);
+ fromJson(jo.value("state_key"_ls), pod.stateKey);
+ fromJson(jo.value("type"_ls), pod.type);
+ fromJson(jo.value("sender"_ls), pod.sender);
+ }
+};
+
+} // namespace Quotient