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