aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/auth_data.h
blob: 1aeea6c2ab5beb6ba2b11737a7307b10f6197a5a (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
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#pragma once

#include "converters.h"

#include <QtCore/QHash>
#include <QtCore/QJsonObject>

namespace Quotient
{

// Data structures

/// Used by clients to submit authentication information to the
/// interactive-authentication API
struct AuthenticationData
{
    /// The login type that the client is attempting to complete.
    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);
    static void fillFrom(QJsonObject jo, AuthenticationData& pod);
};

} // namespace Quotient