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
43
44
45
46
47
48
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "converters.h"
namespace Quotient {
struct OpenIdCredentials {
/// An access token the consumer may use to verify the identity of
/// the person who generated the token. This is given to the federation
/// API `GET /openid/userinfo` to verify the user's identity.
QString accessToken;
/// The string `Bearer`.
QString tokenType;
/// The homeserver domain the consumer should use when attempting to
/// verify the user's identity.
QString matrixServerName;
/// The number of seconds before this token expires and a new one must
/// be generated.
int expiresIn;
};
template <>
struct JsonObjectConverter<OpenIdCredentials> {
static void dumpTo(QJsonObject& jo, const OpenIdCredentials& pod)
{
addParam<>(jo, QStringLiteral("access_token"), pod.accessToken);
addParam<>(jo, QStringLiteral("token_type"), pod.tokenType);
addParam<>(jo, QStringLiteral("matrix_server_name"),
pod.matrixServerName);
addParam<>(jo, QStringLiteral("expires_in"), pod.expiresIn);
}
static void fillFrom(const QJsonObject& jo, OpenIdCredentials& pod)
{
fromJson(jo.value("access_token"_ls), pod.accessToken);
fromJson(jo.value("token_type"_ls), pod.tokenType);
fromJson(jo.value("matrix_server_name"_ls), pod.matrixServerName);
fromJson(jo.value("expires_in"_ls), pod.expiresIn);
}
};
} // namespace Quotient
|