ruma_client_api/voip/
get_turn_server_info.rs
1pub mod v3 {
6 use std::time::Duration;
11
12 use ruma_common::{
13 api::{request, response, Metadata},
14 metadata,
15 };
16
17 const METADATA: Metadata = metadata! {
18 method: GET,
19 rate_limited: true,
20 authentication: AccessToken,
21 history: {
22 1.0 => "/_matrix/client/r0/voip/turnServer",
23 1.1 => "/_matrix/client/v3/voip/turnServer",
24 }
25 };
26
27 #[request(error = crate::Error)]
29 #[derive(Default)]
30 pub struct Request {}
31
32 #[response(error = crate::Error)]
34 pub struct Response {
35 pub username: String,
37
38 pub password: String,
40
41 pub uris: Vec<String>,
43
44 #[serde(with = "ruma_common::serde::duration::secs")]
46 pub ttl: Duration,
47 }
48
49 impl Request {
50 pub fn new() -> Self {
52 Self {}
53 }
54 }
55
56 impl Response {
57 pub fn new(username: String, password: String, uris: Vec<String>, ttl: Duration) -> Self {
59 Self { username, password, uris, ttl }
60 }
61 }
62}