ruma_client_api/device/
update_device.rs1pub mod v3 {
6    use ruma_common::{
11        api::{request, response, Metadata},
12        metadata, OwnedDeviceId,
13    };
14
15    const METADATA: Metadata = metadata! {
16        method: PUT,
17        rate_limited: false,
18        authentication: AccessToken,
19        history: {
20            1.0 => "/_matrix/client/r0/devices/:device_id",
21            1.1 => "/_matrix/client/v3/devices/:device_id",
22        }
23    };
24
25    #[request(error = crate::Error)]
27    pub struct Request {
28        #[ruma_api(path)]
30        pub device_id: OwnedDeviceId,
31
32        #[serde(skip_serializing_if = "Option::is_none")]
36        pub display_name: Option<String>,
37    }
38
39    #[response(error = crate::Error)]
41    #[derive(Default)]
42    pub struct Response {}
43
44    impl Request {
45        pub fn new(device_id: OwnedDeviceId) -> Self {
47            Self { device_id, display_name: None }
48        }
49    }
50
51    impl Response {
52        pub fn new() -> Self {
54            Self {}
55        }
56    }
57}