blob: a997232323eb5bfc492f5044e39db80e4e2ce62b (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "converters.h"
namespace Quotient {
/// Used by clients to submit authentication information to the
/// interactive-authentication API
struct AuthenticationData {
/// The authentication type that the client is attempting to complete.
/// May be omitted if `session` is given, and the client is reissuing a
/// request which it believes has been completed out-of-band (for example,
/// via the [fallback mechanism](#fallback)).
QString type;
/// The value of the session key given by the homeserver.
QString session;
/// Keys dependent on the login type
QHash<QString, QJsonObject> authInfo;
};
template <>
struct JsonObjectConverter<AuthenticationData> {
static void dumpTo(QJsonObject& jo, const AuthenticationData& pod)
{
fillJson(jo, pod.authInfo);
addParam<IfNotEmpty>(jo, QStringLiteral("type"), pod.type);
addParam<IfNotEmpty>(jo, QStringLiteral("session"), pod.session);
}
static void fillFrom(QJsonObject jo, AuthenticationData& pod)
{
fromJson(jo.take("type"_ls), pod.type);
fromJson(jo.take("session"_ls), pod.session);
fromJson(jo, pod.authInfo);
}
};
} // namespace Quotient
|