use ruma_api::ruma_api;
use ruma_events::AnyStateEvent;
use ruma_identifiers::RoomId;
use ruma_serde::Raw;
ruma_api! {
metadata: {
description: "Get state events for a room.",
method: GET,
name: "get_state_events",
path: "/_matrix/client/r0/rooms/:room_id/state",
rate_limited: false,
authentication: AccessToken,
}
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 }
}
}