aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/to_device.cpp
blob: 1478a67917a8685faf4211ad07788db5cd7912e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#include "to_device.h"

#include "converters.h"

#include <QtCore/QStringBuilder>

using namespace QMatrixClient;

static const auto basePath = QStringLiteral("/_matrix/client/r0");

SendToDeviceJob::SendToDeviceJob(const QString& eventType, const QString& txnId, const QHash<QString, QHash<QString, QJsonObject>>& messages)
    : BaseJob(HttpVerb::Put, "SendToDeviceJob",
        basePath % "/sendToDevice/" % eventType % "/" % txnId)
{
    QJsonObject _data;
    addParam<IfNotEmpty>(_data, "messages", messages);
    setRequestData(_data);
}