use std::collections::BTreeMap;
use ruma_api::ruma_api;
use ruma_identifiers::RoomId;
use super::RoomKeyBackup;
ruma_api! {
metadata: {
description: "Retrieve all keys from a backup.",
method: GET,
name: "get_backup_keys",
path: "/_matrix/client/r0/room_keys/keys",
rate_limited: true,
authentication: AccessToken,
}
request: {
#[ruma_api(query)]
pub version: &'a str,
}
response: {
pub rooms: BTreeMap<RoomId, RoomKeyBackup>,
}
error: crate::Error
}
impl<'a> Request<'a> {
pub fn new(version: &'a str) -> Self {
Self { version }
}
}
impl Response {
pub fn new(rooms: BTreeMap<RoomId, RoomKeyBackup>) -> Self {
Self { rooms }
}
}