aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/auth_data.cpp
blob: 006b8c7e47e730cc98fe8983d44e10bdf9049413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#include "auth_data.h"

using namespace QMatrixClient;

void JsonObjectConverter<AuthenticationData>::dumpTo(
        QJsonObject& jo, const AuthenticationData& pod)
{
    fillJson(jo, pod.authInfo);
    addParam<>(jo, QStringLiteral("type"), pod.type);
    addParam<IfNotEmpty>(jo, QStringLiteral("session"), pod.session);
}

void JsonObjectConverter<AuthenticationData>::fillFrom(
    QJsonObject jo, AuthenticationData& result)
{
    fromJson(jo.take("type"_ls), result.type);
    fromJson(jo.take("session"_ls), result.session);

    fromJson(jo, result.authInfo);
}