ruma_client_api/dehydrated_device/
delete_dehydrated_device.rs
1pub mod unstable {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedDeviceId,
13 };
14
15 const METADATA: Metadata = metadata! {
16 method: DELETE,
17 rate_limited: false,
18 authentication: AccessToken,
19 history: {
20 unstable => "/_matrix/client/unstable/org.matrix.msc3814.v1/dehydrated_device",
21 }
22 };
23
24 #[request(error = crate::Error)]
26 pub struct Request {}
27
28 #[response(error = crate::Error)]
30 pub struct Response {
31 pub device_id: OwnedDeviceId,
33 }
34
35 impl Request {
36 pub fn new() -> Self {
38 Self {}
39 }
40 }
41
42 impl Response {
43 pub fn new(device_id: OwnedDeviceId) -> Self {
45 Self { device_id }
46 }
47 }
48}