ruma_client_api/push/
get_pushers.rs
1pub mod v3 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata,
13 };
14
15 use crate::push::Pusher;
16
17 const METADATA: Metadata = metadata! {
18 method: GET,
19 rate_limited: false,
20 authentication: AccessToken,
21 history: {
22 1.0 => "/_matrix/client/r0/pushers",
23 1.1 => "/_matrix/client/v3/pushers",
24 }
25 };
26
27 #[request(error = crate::Error)]
29 #[derive(Default)]
30 pub struct Request {}
31
32 #[response(error = crate::Error)]
34 pub struct Response {
35 pub pushers: Vec<Pusher>,
37 }
38
39 impl Request {
40 pub fn new() -> Self {
42 Self {}
43 }
44 }
45
46 impl Response {
47 pub fn new(pushers: Vec<Pusher>) -> Self {
49 Self { pushers }
50 }
51 }
52}