blob: ee5119064f84274fcf95f23e6d75bf3d461fd8cc (
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
|
/******************************************************************************
* 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)
{
fromJson(data, d->data);
return Success;
}
|