Newer
Older
#if __has_include(<nlohmann/json_fwd.hpp>)
#include <nlohmann/json_fwd.hpp>
#else
namespace mtx {
namespace events {
namespace msg {
struct Notice
{
// The notice text to send.
std::string body;
// Must be 'm.notice'.
std::string msgtype;
//! We only handle org.matrix.custom.html.
std::string format;
//! HTML formatted message.
std::string formatted_body;
from_json(const nlohmann::json &obj, Notice &content);
to_json(nlohmann::json &obj, const Notice &content);
} // namespace msg
} // namespace events
} // namespace mtx