pub mod v3 {
use ruma_common::{api::ruma_api, events::AnyStateEvent, serde::Raw, RoomId};
ruma_api! {
metadata: {
description: "Get state events for a room.",
method: GET,
name: "get_state_events",
r0_path: "/_matrix/client/r0/rooms/:room_id/state",
stable_path: "/_matrix/client/v3/rooms/:room_id/state",
rate_limited: false,
authentication: AccessToken,
added: 1.0,
}
request: {
#[ruma_api(path)]
pub room_id: &'a RoomId,
}
response: {
#[ruma_api(body)]
pub room_state: Vec<Raw<AnyStateEvent>>,
}
error: crate::Error
}
impl<'a> Request<'a> {
pub fn new(room_id: &'a RoomId) -> Self {
Self { room_id }
}
}
impl Response {
pub fn new(room_state: Vec<Raw<AnyStateEvent>>) -> Self {
Self { room_state }
}
}
}