aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/room_state.cpp
blob: e18108acf6b8415da4020bd5fa71eaa07d81a2da (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 "room_state.h"

#include <QtCore/QStringBuilder>

using namespace Quotient;

SetRoomStateWithKeyJob::SetRoomStateWithKeyJob(const QString& roomId,
                                               const QString& eventType,
                                               const QString& stateKey,
                                               const QJsonObject& body)
    : BaseJob(HttpVerb::Put, QStringLiteral("SetRoomStateWithKeyJob"),
              QStringLiteral("/_matrix/client/r0") % "/rooms/" % roomId
                  % "/state/" % eventType % "/" % stateKey)
{
    setRequestData(Data(toJson(body)));
    addExpectedKey("event_id");
}