blob: 7d6665f3aa4c652f1fc20d913fc461a77b819151 (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
#include "events/eventloader.h"
#include "converters.h"
namespace QMatrixClient
{
// Operations
class SetPresenceJob : public BaseJob
{
public:
explicit SetPresenceJob(const QString& userId, const QString& presence, const QString& statusMsg = {});
};
class GetPresenceJob : public BaseJob
{
public:
explicit GetPresenceJob(const QString& userId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetPresenceJob. This function can be used when
* a URL for GetPresenceJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
~GetPresenceJob() override;
// Result properties
const QString& presence() const;
Omittable<int> lastActiveAgo() const;
const QString& statusMsg() const;
bool currentlyActive() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class ModifyPresenceListJob : public BaseJob
{
public:
explicit ModifyPresenceListJob(const QString& userId, const QStringList& invite = {}, const QStringList& drop = {});
};
class GetPresenceForListJob : public BaseJob
{
public:
explicit GetPresenceForListJob(const QString& userId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetPresenceForListJob. This function can be used when
* a URL for GetPresenceForListJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
~GetPresenceForListJob() override;
// Result properties
Events&& data();
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace QMatrixClient
|