1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use js_int::UInt;
use ruma_api::ruma_api;
ruma_api! {
metadata: {
description: "Get information about the latest backup.",
method: GET,
name: "get_latest_backup",
path: "/_matrix/client/r0/room_keys/version",
rate_limited: true,
requires_authentication: true,
}
request: {}
response: {
#[serde(flatten)]
pub algorithm: super::BackupAlgorithm,
pub count: UInt,
pub etag: String,
pub version: String,
}
error: crate::Error
}