ruma_client_api/
delayed_events.rs

1//! Endpoints for sending and interacting with delayed events.
2
3pub mod delayed_message_event;
4pub mod delayed_state_event;
5pub mod update_delayed_event;
6
7use serde::{Deserialize, Serialize};
8use web_time::Duration;
9
10/// The query parameters for a delayed event request.
11/// It contains the `timeout` configuration for a delayed event.
12///
13/// ### Note:
14///
15/// This is an Enum since the following properties might be added:
16///
17/// The **Timeout** case might get an additional optional `delay_parent_id` property.
18/// The optional parent id is used to create a secondary timeout.  
19/// In a delay group with two timeouts only one of them will ever be sent.
20///
21/// The **Action** case might be added:
22/// Adds an additional action to a delay event without a timeout but requires a `delay_id` (of the
23/// parent delay event). A possible matrix event that can be send as an alternative to the parent
24/// delay.
25#[derive(Clone, Debug, Serialize, Deserialize)]
26#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
27#[serde(untagged)]
28pub enum DelayParameters {
29    /// Sending a delayed event with a timeout. The response will contain a (server
30    /// generated) `delay_id` instead of an `event_id`.
31    Timeout {
32        /// The timeout duration for this delayed event.
33        #[serde(with = "ruma_common::serde::duration::ms")]
34        #[serde(rename = "org.matrix.msc4140.delay")]
35        timeout: Duration,
36    },
37}