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
46
use anyhow::Result;

use crate::Client;

pub struct AdminApps {
    pub client: Client,
}

impl AdminApps {
    #[doc(hidden)]
    pub fn new(client: Client) -> Self {
        AdminApps { client }
    }

    /**
     * This function performs a `POST` to the `/admin.apps.approve` endpoint.
     *
     * Approve an app for installation on a workspace.
     *
     * FROM: <https://api.slack.com/methods/admin.apps.approve>
     *
     * **Parameters:**
     *
     * * `token: &str` -- Authentication token. Requires scope: `admin.apps:write`.
     */
    pub async fn approve(&self) -> Result<crate::types::DndEndSchema> {
        let url = "/admin.apps.approve".to_string();
        self.client.post(&url, None).await
    }

    /**
     * This function performs a `POST` to the `/admin.apps.restrict` endpoint.
     *
     * Restrict an app for installation on a workspace.
     *
     * FROM: <https://api.slack.com/methods/admin.apps.restrict>
     *
     * **Parameters:**
     *
     * * `token: &str` -- Authentication token. Requires scope: `admin.apps:write`.
     */
    pub async fn restrict(&self) -> Result<crate::types::DndEndSchema> {
        let url = "/admin.apps.restrict".to_string();
        self.client.post(&url, None).await
    }
}