blob: 9afc037b21cea05c8941a67894f05abb9ff4e787 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "../basejob.h"
namespace QMatrixClient
{
// Operations
class SetDisplayNameJob : public BaseJob
{
public:
explicit SetDisplayNameJob(const QString& userId, const QString& displayname = {});
};
class GetDisplayNameJob : public BaseJob
{
public:
explicit GetDisplayNameJob(const QString& userId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetDisplayNameJob. This function can be used when
* a URL for GetDisplayNameJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
~GetDisplayNameJob() override;
// Result properties
const QString& displayname() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class SetAvatarUrlJob : public BaseJob
{
public:
explicit SetAvatarUrlJob(const QString& userId, const QString& avatarUrl = {});
};
class GetAvatarUrlJob : public BaseJob
{
public:
explicit GetAvatarUrlJob(const QString& userId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetAvatarUrlJob. This function can be used when
* a URL for GetAvatarUrlJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
~GetAvatarUrlJob() override;
// Result properties
const QString& avatarUrl() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class GetUserProfileJob : public BaseJob
{
public:
explicit GetUserProfileJob(const QString& userId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetUserProfileJob. This function can be used when
* a URL for GetUserProfileJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
~GetUserProfileJob() override;
// Result properties
const QString& avatarUrl() const;
const QString& displayname() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace QMatrixClient
|