ruma_client_api/authenticated_media/
get_media_config.rs
1pub mod v1 {
6 use js_int::UInt;
11 use ruma_common::{
12 api::{request, response, Metadata},
13 metadata,
14 };
15
16 const METADATA: Metadata = metadata! {
17 method: GET,
18 rate_limited: true,
19 authentication: AccessToken,
20 history: {
21 unstable => "/_matrix/client/unstable/org.matrix.msc3916/media/config",
22 1.11 => "/_matrix/client/v1/media/config",
23 }
24 };
25
26 #[request(error = crate::Error)]
28 #[derive(Default)]
29 pub struct Request {}
30
31 #[response(error = crate::Error)]
33 pub struct Response {
34 #[serde(rename = "m.upload.size")]
36 pub upload_size: UInt,
37 }
38
39 impl Request {
40 pub fn new() -> Self {
42 Self {}
43 }
44 }
45
46 impl Response {
47 pub fn new(upload_size: UInt) -> Self {
49 Self { upload_size }
50 }
51 }
52}