Struct slack_chat_api::apps::Apps
source · pub struct Apps {
pub client: Client,
}Fields§
§client: ClientImplementations§
source§impl Apps
impl Apps
sourcepub async fn uninstall(
&self,
client_id: &str,
client_secret: &str
) -> Result<DndEndSchema>
pub async fn uninstall( &self, client_id: &str, client_secret: &str ) -> Result<DndEndSchema>
This function performs a GET to the /apps.uninstall endpoint.
Uninstalls your app from a workspace.
FROM: https://api.slack.com/methods/apps.uninstall
Parameters:
token: &str– Authentication token. Requires scope:none.client_id: &str– Issued when you created your application.client_secret: &str– Issued when you created your application.