ruma_events/
identity_server.rs

1//! Types for the [`m.identity_server`] event.
2//!
3//! [`m.identity_server`]: https://spec.matrix.org/latest/client-server-api/#midentity_server
4
5use js_option::JsOption;
6use ruma_macros::EventContent;
7use serde::{Deserialize, Serialize};
8
9/// The content of an `m.identity_server` event.
10///
11/// Persists the user's preferred identity server, or preference to not use an identity server at
12/// all.
13#[derive(Clone, Debug, Deserialize, Serialize, EventContent)]
14#[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
15#[ruma_event(type = "m.identity_server", kind = GlobalAccountData)]
16pub struct IdentityServerEventContent {
17    /// The URL of the identity server the user prefers to use, or `Null` if the user does not want
18    /// to use an identity server.
19    ///
20    /// If this is `Undefined`, that means the user has not expressed a preference or has revoked
21    /// their preference, and any applicable default should be used.
22    #[serde(default, skip_serializing_if = "JsOption::is_undefined")]
23    pub base_url: JsOption<String>,
24}