blob: 23cd3fb6299943337bff314170c8cea6bd45b07f (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "../basejob.h"
#include <QtCore/QVector>
#include "converters.h"
namespace QMatrixClient
{
// Operations
class GetPushersJob : public BaseJob
{
public:
// Inner data structures
struct PusherData
{
QString url;
};
struct Pusher
{
QString pushkey;
QString kind;
QString appId;
QString appDisplayName;
QString deviceDisplayName;
QString profileTag;
QString lang;
PusherData data;
};
// End of inner data structures
/** Construct a URL out of baseUrl and usual parameters passed to
* GetPushersJob. This function can be used when
* a URL for GetPushersJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl);
explicit GetPushersJob();
~GetPushersJob() override;
const QVector<Pusher>& pushers() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class PostPusherJob : public BaseJob
{
public:
// Inner data structures
struct PusherData
{
QString url;
};
// End of inner data structures
explicit PostPusherJob(const QString& pushkey, const QString& kind, const QString& appId, const QString& appDisplayName, const QString& deviceDisplayName, const QString& lang, const PusherData& data, const QString& profileTag = {}, bool append = {});
};
} // namespace QMatrixClient
|