blob: f9213d22b66d68cb8fcc0b387a8490db97ebb9ed (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
#include <QtCore/QJsonObject>
#include <QtCore/QVector>
#include "converters.h"
#include "csapi/definitions/client_device.h"
namespace QMatrixClient
{
// Operations
class GetDevicesJob : public BaseJob
{
public:
explicit GetDevicesJob();
/** Construct a URL out of baseUrl and usual parameters passed to
* GetDevicesJob. This function can be used when
* a URL for GetDevicesJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl);
~GetDevicesJob() override;
// Result properties
const QVector<Device>& devices() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class GetDeviceJob : public BaseJob
{
public:
explicit GetDeviceJob(const QString& deviceId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetDeviceJob. This function can be used when
* a URL for GetDeviceJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& deviceId);
~GetDeviceJob() override;
// Result properties
const Device& data() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
class UpdateDeviceJob : public BaseJob
{
public:
explicit UpdateDeviceJob(const QString& deviceId, const QString& displayName = {});
};
class DeleteDeviceJob : public BaseJob
{
public:
explicit DeleteDeviceJob(const QString& deviceId, const QJsonObject& auth = {});
};
class DeleteDevicesJob : public BaseJob
{
public:
explicit DeleteDevicesJob(const QStringList& devices, const QJsonObject& auth = {});
};
} // namespace QMatrixClient
|