blob: 0479b645c905595c8f5cc4acaaebda54e12a8a8c (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "voip.h"
#include "converters.h"
#include <QtCore/QStringBuilder>
using namespace QMatrixClient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
class GetTurnServerJob::Private
{
public:
QJsonObject data;
};
QUrl GetTurnServerJob::makeRequestUrl(QUrl baseUrl)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
basePath % "/voip/turnServer");
}
static const auto GetTurnServerJobName = QStringLiteral("GetTurnServerJob");
GetTurnServerJob::GetTurnServerJob()
: BaseJob(HttpVerb::Get, GetTurnServerJobName,
basePath % "/voip/turnServer")
, d(new Private)
{
}
GetTurnServerJob::~GetTurnServerJob() = default;
const QJsonObject& GetTurnServerJob::data() const
{
return d->data;
}
BaseJob::Status GetTurnServerJob::parseJson(const QJsonDocument& data)
{
d->data = fromJson<QJsonObject>(data);
return Success;
}
|