blob: 628e8314ed13aabdd9a0b36e8862726b7b0819ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "to_device.h"
using namespace Quotient;
SendToDeviceJob::SendToDeviceJob(
const QString& eventType, const QString& txnId,
const QHash<QString, QHash<QString, QJsonObject>>& messages)
: BaseJob(HttpVerb::Put, QStringLiteral("SendToDeviceJob"),
makePath("/_matrix/client/r0", "/sendToDevice/", eventType, "/",
txnId))
{
QJsonObject _data;
addParam<>(_data, QStringLiteral("messages"), messages);
setRequestData(std::move(_data));
}
|