blob: 67563719ad0dc73befb4f86a7258c2994cef4cec (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "../basejob.h"
#include <QtCore/QVector>
#include "converters.h"
namespace QMatrixClient
{
// Operations
class GetAccount3PIDsJob : public BaseJob
{
public:
// Inner data structures
struct ThirdPartyIdentifier
{
QString medium;
QString address;
operator QJsonObject() const;
};
// End of inner data structures
explicit GetAccount3PIDsJob();
~GetAccount3PIDsJob() override;
const QVector<ThirdPartyIdentifier>& threepids() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class Post3PIDsJob : public BaseJob
{
public:
// Inner data structures
struct ThreePidCredentials
{
QString clientSecret;
QString idServer;
QString sid;
operator QJsonObject() const;
};
// End of inner data structures
explicit Post3PIDsJob(const ThreePidCredentials& threePidCreds, bool bind = {});
};
class RequestTokenTo3PIDJob : public BaseJob
{
public:
explicit RequestTokenTo3PIDJob();
};
} // namespace QMatrixClient
|