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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use ruma_api::ruma_api;
use ruma_identifiers::UserId;
ruma_api! {
metadata: {
description: "Gets a list of users who have updated their device identity keys since a previous sync token.",
method: GET,
name: "get_key_changes",
path: "/_matrix/client/r0/keys/changes",
rate_limited: false,
authentication: AccessToken,
}
request: {
#[ruma_api(query)]
pub from: &'a str,
#[ruma_api(query)]
pub to: &'a str,
}
response: {
pub changed: Vec<UserId>,
pub left: Vec<UserId>,
}
error: crate::Error
}
impl<'a> Request<'a> {
pub fn new(from: &'a str, to: &'a str) -> Self {
Self { from, to }
}
}
impl Response {
pub fn new(changed: Vec<UserId>, left: Vec<UserId>) -> Self {
Self { changed, left }
}
}