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

#include "report_content.h"

#include <QtCore/QStringBuilder>

using namespace Quotient;

ReportContentJob::ReportContentJob(const QString& roomId, const QString& eventId,
                                   Omittable<int> score, const QString& reason)
    : BaseJob(HttpVerb::Post, QStringLiteral("ReportContentJob"),
              QStringLiteral("/_matrix/client/r0") % "/rooms/" % roomId
                  % "/report/" % eventId)
{
    QJsonObject _data;
    addParam<IfNotEmpty>(_data, QStringLiteral("score"), score);
    addParam<IfNotEmpty>(_data, QStringLiteral("reason"), reason);
    setRequestData(std::move(_data));
}