blob: 25d0dd8edcc733894d7f393f6266e0a067f7327c (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#include "receipts.h"
#include "converters.h"
#include <QtCore/QStringBuilder>
using namespace QMatrixClient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
static const auto PostReceiptJobName = QStringLiteral("PostReceiptJob");
PostReceiptJob::PostReceiptJob(const QString& roomId,
const QString& receiptType,
const QString& eventId,
const QJsonObject& receipt)
: BaseJob(HttpVerb::Post, PostReceiptJobName,
basePath % "/rooms/" % roomId % "/receipt/" % receiptType % "/"
% eventId)
{
setRequestData(Data(toJson(receipt)));
}
|