blob: 05a27c1c0da02f27160003e08c312577c9fc1d82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "user_identifier.h"
using namespace QMatrixClient;
void JsonObjectConverter<UserIdentifier>::dumpTo(
QJsonObject& jo, const UserIdentifier& pod)
{
fillJson(jo, pod.additionalProperties);
addParam<>(jo, QStringLiteral("type"), pod.type);
}
void JsonObjectConverter<UserIdentifier>::fillFrom(
QJsonObject jo, UserIdentifier& result)
{
fromJson(jo.take("type"_ls), result.type);
fromJson(jo, result.additionalProperties);
}
|