blob: 3b03172c8930311ae2cb8bc080d1d935f9672b8a (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "versions.h"
#include "converters.h"
#include <QtCore/QStringBuilder>
using namespace QMatrixClient;
static const auto basePath = QStringLiteral("/_matrix/client");
class GetVersionsJob::Private
{
public:
QVector<QString> versions;
};
QUrl GetVersionsJob::makeRequestUrl(QUrl baseUrl)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/versions");
}
GetVersionsJob::GetVersionsJob()
: BaseJob(HttpVerb::Get, "GetVersionsJob",
basePath % "/versions", false)
, d(new Private)
{
}
GetVersionsJob::~GetVersionsJob() = default;
const QVector<QString>& GetVersionsJob::versions() const
{
return d->versions;
}
BaseJob::Status GetVersionsJob::parseJson(const QJsonDocument& data)
{
auto json = data.object();
d->versions = fromJson<QVector<QString>>(json.value("versions"));
return Success;
}
|