ruma_client_api/dehydrated_device/
get_dehydrated_device.rs
1pub mod unstable {
6 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata,
13 serde::Raw,
14 OwnedDeviceId,
15 };
16
17 use crate::dehydrated_device::DehydratedDeviceData;
18
19 const METADATA: Metadata = metadata! {
20 method: GET,
21 rate_limited: false,
22 authentication: AccessToken,
23 history: {
24 unstable => "/_matrix/client/unstable/org.matrix.msc3814.v1/dehydrated_device",
25 }
26 };
27
28 #[request(error = crate::Error)]
30 pub struct Request {}
31
32 #[response(error = crate::Error)]
34 pub struct Response {
35 pub device_id: OwnedDeviceId,
37 pub device_data: Raw<DehydratedDeviceData>,
39 }
40
41 impl Request {
42 pub fn new() -> Self {
44 Self {}
45 }
46 }
47
48 impl Response {
49 pub fn new(device_id: OwnedDeviceId, device_data: Raw<DehydratedDeviceData>) -> Self {
51 Self { device_id, device_data }
52 }
53 }
54}