ruma-client-api 0.23.1

Types for the endpoints in the Matrix client-server API.
Documentation
//! `GET /_matrix/client/*/rendezvous/{id}`
//!
//! Get a rendezvous session.

pub mod unstable {
    //! `unstable/io.element.msc4388` ([MSC])
    //!
    //! [MSC]: https://github.com/matrix-org/matrix-spec-proposals/pull/4388

    use std::time::Duration;

    use ruma_common::{
        api::{auth_scheme::NoAccessToken, request, response},
        metadata,
    };

    metadata! {
        method: GET,
        rate_limited: true,
        authentication: NoAccessToken,
        history: {
            unstable => "/_matrix/client/unstable/io.element.msc4388/rendezvous/{id}",
        }
    }

    /// Request type for the `GET` `rendezvous` endpoint.
    #[request]
    pub struct Request {
        /// The ID of the rendezvous session to get.
        #[ruma_api(path)]
        pub id: String,
    }

    impl Request {
        /// Creates a new `Request` with the given id.
        pub fn new(id: String) -> Self {
            Self { id }
        }
    }

    #[response]
    /// Response type for the `GET` `rendezvous` endpoint.
    pub struct Response {
        /// The current sequence token for the session.
        pub sequence_token: String,

        /// The current data for the session.
        pub data: String,

        /// The time remaining in milliseconds until the session expires.
        #[serde(with = "ruma_common::serde::duration::ms", rename = "expires_in_ms")]
        pub expires_in: Duration,
    }

    impl Response {
        /// Creates a new `Response` with the given sequence token and data.
        pub fn new(sequence_token: String, data: String, expires_in: Duration) -> Self {
            Self { sequence_token, data, expires_in }
        }
    }
}