From 4244cee8d5e0f760cccd2b45ad587670573ef03c Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 24 Sep 2018 19:20:10 +0900 Subject: Prepare for CS API 0.4.0 This commit consists of two parts: upgrading the API infrastructure and trivial but sweeping update to the generated files. 1. The API infrastructure (converters.h, *.mustache and some other non-generated files) now can deal with top-level JSON arrays and response inlining; better supports property maps; and gets some formatting fixes in generated code. 2. Generated files now use QJsonValue instead of QJsonObject as a default type to (un)marshall Matrix API data structures, to match the change in the infrastructure above This commit is still using the old Matrix API definitions, before CS API 0.4.0. Getting to CS API 0.4.0 will come next. --- lib/csapi/room_send.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/csapi/room_send.h') diff --git a/lib/csapi/room_send.h b/lib/csapi/room_send.h index 915a8f78..85c298e0 100644 --- a/lib/csapi/room_send.h +++ b/lib/csapi/room_send.h @@ -13,7 +13,7 @@ namespace QMatrixClient // Operations /// Send a message event to the given room. - /// + /// /// This endpoint is used to send a message event to a room. Message events /// allow access to historical events and pagination, making them suited /// for "once-off" activity in a room. @@ -25,15 +25,15 @@ namespace QMatrixClient { public: /*! Send a message event to the given room. - * \param roomId + * \param roomId * The room to send the event to. - * \param eventType + * \param eventType * The type of event to send. - * \param txnId + * \param txnId * The transaction ID for this event. Clients should generate an * ID unique across requests with the same access token; it will be * used by the server to ensure idempotency of requests. - * \param body + * \param body * This endpoint is used to send a message event to a room. Message events * allow access to historical events and pagination, making them suited * for "once-off" activity in a room. -- cgit v1.2.3