//! [POST /_matrix/client/r0/room_keys/version](https://spec.matrix.org/v1.1/client-server-api/#post_matrixclientv3room_keysversion) use ruma_api::ruma_api; use ruma_serde::Raw; use super::BackupAlgorithm; ruma_api! { metadata: { description: "Update information about an existing backup.", method: POST, name: "update_backup", path: "/_matrix/client/r0/room_keys/version/:version", rate_limited: true, authentication: AccessToken, } request: { /// The backup version. #[ruma_api(path)] pub version: &'a str, /// The algorithm used for storing backups. #[ruma_api(body)] pub algorithm: Raw, } #[derive(Default)] response: {} error: crate::Error } impl<'a> Request<'a> { /// Creates a new `Request` with the given backup version and algorithm. pub fn new(version: &'a str, algorithm: Raw) -> Self { Self { version, algorithm } } } impl Response { /// Creates an empty `Response`. pub fn new() -> Self { Self {} } }