1//! `GET /_matrix/client/*/user/{userId}/rooms/{roomId}/account_data/{type}`
2//!
3//! Gets account data room for a user for a given room
45pub mod v3 {
6//! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv3useruseridroomsroomidaccount_datatype
910use ruma_common::{
11 api::{request, response, Metadata},
12 metadata,
13 serde::Raw,
14 OwnedRoomId, OwnedUserId,
15 };
16use ruma_events::{AnyRoomAccountDataEventContent, RoomAccountDataEventType};
1718const METADATA: Metadata = metadata! {
19 method: GET,
20 rate_limited: false,
21 authentication: AccessToken,
22 history: {
231.0 => "/_matrix/client/r0/user/:user_id/rooms/:room_id/account_data/:event_type",
241.1 => "/_matrix/client/v3/user/:user_id/rooms/:room_id/account_data/:event_type",
25 }
26 };
2728/// Request type for the `get_room_account_data` endpoint.
29#[request(error = crate::Error)]
30pub struct Request {
31/// User ID of user for whom to retrieve data.
32#[ruma_api(path)]
33pub user_id: OwnedUserId,
3435/// Room ID for which to retrieve data.
36#[ruma_api(path)]
37pub room_id: OwnedRoomId,
3839/// Type of data to retrieve.
40#[ruma_api(path)]
41pub event_type: RoomAccountDataEventType,
42 }
4344/// Response type for the `get_room_account_data` endpoint.
45#[response(error = crate::Error)]
46pub struct Response {
47/// Account data content for the given type.
48 ///
49 /// Since the inner type of the `Raw` does not implement `Deserialize`, you need to use
50 /// [`Raw::deserialize_as`] to deserialize it.
51#[ruma_api(body)]
52pub account_data: Raw<AnyRoomAccountDataEventContent>,
53 }
5455impl Request {
56/// Creates a new `Request` with the given user ID, room ID and event type.
57pub fn new(
58 user_id: OwnedUserId,
59 room_id: OwnedRoomId,
60 event_type: RoomAccountDataEventType,
61 ) -> Self {
62Self { user_id, room_id, event_type }
63 }
64 }
6566impl Response {
67/// Creates a new `Response` with the given account data.
68pub fn new(account_data: Raw<AnyRoomAccountDataEventContent>) -> Self {
69Self { account_data }
70 }
71 }
72}