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

Fix missing UnsignedData from docs

parent 0af2cb99
No related branches found
No related tags found
No related merge requests found
Pipeline #1082 passed
......@@ -56,6 +56,7 @@ template<class Content>
void
to_json(json &obj, const DeviceEvent<Content> &event);
//! Additional server provided data for this event.
struct UnsignedData
{
//! The time in milliseconds that has elapsed since the event was sent.
......@@ -67,7 +68,9 @@ struct UnsignedData
//! The client-supplied transaction ID, if the client
//! being given the event is the same one which sent it.
std::string transaction_id;
//! The previous sender of a state event.
std::string prev_sender;
//! The replaced state event.
std::string replaces_state;
//! The event ID that redacted this event.
std::string redacted_by;
......
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