ruma_client_api/room/
report_content.rs
1pub mod v3 {
6 use js_int::Int;
11 use ruma_common::{
12 api::{request, response, Metadata},
13 metadata, OwnedEventId, OwnedRoomId,
14 };
15
16 const METADATA: Metadata = metadata! {
17 method: POST,
18 rate_limited: false,
19 authentication: AccessToken,
20 history: {
21 1.0 => "/_matrix/client/r0/rooms/:room_id/report/:event_id",
22 1.1 => "/_matrix/client/v3/rooms/:room_id/report/:event_id",
23 }
24 };
25
26 #[request(error = crate::Error)]
28 pub struct Request {
29 #[ruma_api(path)]
31 pub room_id: OwnedRoomId,
32
33 #[ruma_api(path)]
35 pub event_id: OwnedEventId,
36
37 #[serde(skip_serializing_if = "Option::is_none")]
39 pub score: Option<Int>,
40
41 #[serde(skip_serializing_if = "Option::is_none")]
43 pub reason: Option<String>,
44 }
45
46 #[response(error = crate::Error)]
48 #[derive(Default)]
49 pub struct Response {}
50
51 impl Request {
52 pub fn new(
54 room_id: OwnedRoomId,
55 event_id: OwnedEventId,
56 score: Option<Int>,
57 reason: Option<String>,
58 ) -> Self {
59 Self { room_id, event_id, score, reason }
60 }
61 }
62
63 impl Response {
64 pub fn new() -> Self {
66 Self {}
67 }
68 }
69}