blob: bc52208f21dc83dec1815da5daf22db63e1d4474 (
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 "report_content.h"
using namespace Quotient;
ReportContentJob::ReportContentJob(const QString& roomId, const QString& eventId,
Omittable<int> score, const QString& reason)
: BaseJob(HttpVerb::Post, QStringLiteral("ReportContentJob"),
makePath("/_matrix/client/v3", "/rooms/", roomId, "/report/",
eventId))
{
QJsonObject _dataJson;
addParam<IfNotEmpty>(_dataJson, QStringLiteral("score"), score);
addParam<IfNotEmpty>(_dataJson, QStringLiteral("reason"), reason);
setRequestData({ _dataJson });
}
|