message/state: The event id is required in the response when sending events.

This commit is contained in:
Damir Jelić 2020-05-06 09:54:43 +02:00
parent ecb498be67
commit e36e9a68ac
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ ruma_api! {
response {
/// A unique identifier for the event.
pub event_id: Option<EventId>,
pub event_id: EventId,
}
error: crate::Error

View File

@ -33,7 +33,7 @@ ruma_api! {
response {
/// A unique identifier for the event.
pub event_id: Option<EventId>,
pub event_id: EventId,
}
error: crate::Error

View File

@ -37,7 +37,7 @@ ruma_api! {
response {
/// A unique identifier for the event.
pub event_id: Option<EventId>,
pub event_id: EventId,
}
error: crate::Error