1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use anyhow::Result;
use crate::Client;
pub struct Apps {
pub client: Client,
}
impl Apps {
#[doc(hidden)]
pub fn new(client: Client) -> Self {
Apps { client }
}
pub async fn uninstall(
&self,
client_id: &str,
client_secret: &str,
) -> Result<crate::types::DndEndSchema> {
let mut query_args: Vec<(String, String)> = Default::default();
if !client_id.is_empty() {
query_args.push(("client_id".to_string(), client_id.to_string()));
}
if !client_secret.is_empty() {
query_args.push(("client_secret".to_string(), client_secret.to_string()));
}
let query_ = serde_urlencoded::to_string(&query_args).unwrap();
let url = format!("/apps.uninstall?{}", query_);
self.client.get(&url, None).await
}
}