Skip to content
Snippets Groups Projects
Verified Commit 91ab4d63 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix docs for some responses

parent 387b940c
No related branches found
No related tags found
No related merge requests found
Pipeline #3904 failed
......@@ -18,6 +18,7 @@
namespace mtx {
namespace responses {
//! Information about one of your devices.
struct Device
{
//! **Required.** Identifier of this device.
......
......@@ -14,14 +14,17 @@
namespace mtx {
namespace responses {
// Used to represent empty responses
//! Used to represent empty responses
struct Empty
{
friend void from_json(const nlohmann::json &, Empty &);
};
//! The response for a logout.
using Logout = Empty;
//! The response after changing your display name.
using DisplayName = Empty;
//! The response after inviting a user to a room.
using RoomInvite = Empty;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment