blob: 087eabf0fb7e897814da4045503c16477f89abd1 (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
#include <QtCore/QVector>
#include <QtCore/QHash>
#include "converters.h"
namespace QMatrixClient
{
// Operations
class GetWhoIsJob : public BaseJob
{
public:
// Inner data structures
struct ConnectionInfo
{
QString ip;
Omittable<qint64> lastSeen;
QString userAgent;
};
struct SessionInfo
{
QVector<ConnectionInfo> connections;
};
struct DeviceInfo
{
QVector<SessionInfo> sessions;
};
// Construction/destruction
explicit GetWhoIsJob(const QString& userId);
/** Construct a URL out of baseUrl and usual parameters passed to
* GetWhoIsJob. This function can be used when
* a URL for GetWhoIsJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
~GetWhoIsJob() override;
// Result properties
const QString& userId() const;
const QHash<QString, DeviceInfo>& devices() const;
protected:
Status parseJson(const QJsonDocument& data) override;
private:
class Private;
QScopedPointer<Private> d;
};
} // namespace QMatrixClient
|