ruma_federation_api/discovery/
get_server_version.rs
1pub mod v1 {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata,
13 };
14 use serde::{Deserialize, Serialize};
15
16 const METADATA: Metadata = metadata! {
17 method: GET,
18 rate_limited: false,
19 authentication: None,
20 history: {
21 1.0 => "/_matrix/federation/v1/version",
22 }
23 };
24
25 #[request]
27 #[derive(Default)]
28 pub struct Request {}
29
30 #[response]
32 #[derive(Default)]
33 pub struct Response {
34 #[serde(skip_serializing_if = "Option::is_none")]
36 pub server: Option<Server>,
37 }
38
39 impl Request {
40 pub fn new() -> Self {
42 Self {}
43 }
44 }
45
46 impl Response {
47 pub fn new() -> Self {
49 Default::default()
50 }
51 }
52
53 #[derive(Clone, Debug, Default, Serialize, Deserialize)]
55 #[cfg_attr(not(ruma_unstable_exhaustive_types), non_exhaustive)]
56 pub struct Server {
57 #[serde(skip_serializing_if = "Option::is_none")]
59 pub name: Option<String>,
60
61 #[serde(skip_serializing_if = "Option::is_none")]
65 pub version: Option<String>,
66 }
67
68 impl Server {
69 pub fn new() -> Self {
71 Default::default()
72 }
73 }
74}