ruma_appservice_api/ping/
send_ping.rs
1pub mod v1 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedTransactionId,
13 };
14
15 const METADATA: Metadata = metadata! {
16 method: POST,
17 rate_limited: false,
18 authentication: AccessToken,
19 history: {
20 unstable => "/_matrix/app/unstable/fi.mau.msc2659/ping",
21 1.7 => "/_matrix/app/v1/ping",
22 }
23 };
24
25 #[request]
27 #[derive(Default)]
28 pub struct Request {
29 #[serde(skip_serializing_if = "Option::is_none")]
32 pub transaction_id: Option<OwnedTransactionId>,
33 }
34
35 #[response]
37 #[derive(Default)]
38 pub struct Response {}
39
40 impl Request {
41 pub fn new() -> Self {
43 Self::default()
44 }
45 }
46
47 impl Response {
48 pub fn new() -> Self {
50 Self::default()
51 }
52 }
53}