pub mod v3 {
use ruma_common::{
OwnedEventId, OwnedRoomId,
api::{auth_scheme::AccessToken, request, response},
metadata,
};
metadata! {
method: POST,
rate_limited: false,
authentication: AccessToken,
history: {
1.0 => "/_matrix/client/r0/rooms/{room_id}/report/{event_id}",
1.1 => "/_matrix/client/v3/rooms/{room_id}/report/{event_id}",
}
}
#[request]
pub struct Request {
#[ruma_api(path)]
pub room_id: OwnedRoomId,
#[ruma_api(path)]
pub event_id: OwnedEventId,
#[serde(skip_serializing_if = "Option::is_none")]
pub reason: Option<String>,
}
#[response]
#[derive(Default)]
pub struct Response {}
impl Request {
pub fn new(room_id: OwnedRoomId, event_id: OwnedEventId) -> Self {
Self { room_id, event_id, reason: None }
}
}
impl Response {
pub fn new() -> Self {
Self {}
}
}
}