blob: 094fa3af46a08b74f9b035d191cf552141edbad8 (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
#include "events/event.h"
#include "converters.h"
#include <QtCore/QVector>
#include <QtCore/QVariant>
#include <QtCore/QJsonObject>
namespace QMatrixClient
{
// Operations
class GetNotificationsJob : public BaseJob
{
public:
// Inner data structures
struct Notification
{
QVector<QVariant> actions;
EventPtr event;
QString profileTag;
bool read;
QString roomId;
qint64 ts;
};
// Construction/destruction
explicit GetNotificationsJob(const QString& from = {}, Omittable<int> limit = none, const QString& only = {});
/** Construct a URL out of baseUrl and usual parameters passed to
* GetNotificationsJob. This function can be used when
* a URL for GetNotificationsJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& from = {}, Omittable<int> limit = none, const QString& only = {});
~GetNotificationsJob() override;
// Result properties
const QString& nextToken() const;
std::vector<Notification>&& notifications();
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace QMatrixClient
|