blob: 0783f11b4ae86d1b55ac7aaf4b2d9d4c749d4887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "homeserver.h"
using namespace QMatrixClient;
void JsonObjectConverter<HomeserverInformation>::dumpTo(
QJsonObject& jo, const HomeserverInformation& pod)
{
addParam<>(jo, QStringLiteral("base_url"), pod.baseUrl);
}
void JsonObjectConverter<HomeserverInformation>::fillFrom(
const QJsonObject& jo, HomeserverInformation& result)
{
fromJson(jo.value("base_url"_ls), result.baseUrl);
}
|