aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/auth_data.cpp
blob: edeb71115d9695ef2d005b43ffc6def7fbe9b7d4 (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 "auth_data.h"

using namespace Quotient;

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);
}