ruma_client_api/membership/
kick_user.rs1pub mod v3 {
6 use ruma_common::{
11 OwnedRoomId, OwnedUserId,
12 api::{auth_scheme::AccessToken, request, response},
13 metadata,
14 };
15
16 metadata! {
17 method: POST,
18 rate_limited: false,
19 authentication: AccessToken,
20 history: {
21 1.0 => "/_matrix/client/r0/rooms/{room_id}/kick",
22 1.1 => "/_matrix/client/v3/rooms/{room_id}/kick",
23 }
24 }
25
26 #[request(error = crate::Error)]
28 pub struct Request {
29 #[ruma_api(path)]
31 pub room_id: OwnedRoomId,
32
33 pub user_id: OwnedUserId,
35
36 #[serde(skip_serializing_if = "Option::is_none")]
38 pub reason: Option<String>,
39 }
40
41 #[response(error = crate::Error)]
43 #[derive(Default)]
44 pub struct Response {}
45
46 impl Request {
47 pub fn new(room_id: OwnedRoomId, user_id: OwnedUserId) -> Self {
49 Self { room_id, user_id, reason: None }
50 }
51 }
52
53 impl Response {
54 pub fn new() -> Self {
56 Self {}
57 }
58 }
59}