pub struct AdminTeamsSettings {
pub client: Client,
}Fields§
§client: ClientImplementations§
source§impl AdminTeamsSettings
impl AdminTeamsSettings
sourcepub async fn info(&self, team_id: &str) -> Result<DndEndSchema>
pub async fn info(&self, team_id: &str) -> Result<DndEndSchema>
This function performs a GET to the /admin.teams.settings.info endpoint.
Fetch information about settings in a workspace
FROM: https://api.slack.com/methods/admin.teams.settings.info
Parameters:
token: &str– Authentication token. Requires scope:admin.teams:read.team_id: &str
sourcepub async fn set_default_channels(&self) -> Result<DndEndSchema>
pub async fn set_default_channels(&self) -> Result<DndEndSchema>
This function performs a POST to the /admin.teams.settings.setDefaultChannels endpoint.
Set the default channels of a workspace.
FROM: https://api.slack.com/methods/admin.teams.settings.setDefaultChannels
sourcepub async fn set_description(&self) -> Result<DndEndSchema>
pub async fn set_description(&self) -> Result<DndEndSchema>
This function performs a POST to the /admin.teams.settings.setDescription endpoint.
Set the description of a given workspace.
FROM: https://api.slack.com/methods/admin.teams.settings.setDescription
Parameters:
token: &str– Authentication token. Requires scope:admin.teams:write.
sourcepub async fn set_discoverability(&self) -> Result<DndEndSchema>
pub async fn set_discoverability(&self) -> Result<DndEndSchema>
This function performs a POST to the /admin.teams.settings.setDiscoverability endpoint.
An API method that allows admins to set the discoverability of a given workspace
FROM: https://api.slack.com/methods/admin.teams.settings.setDiscoverability
Parameters:
token: &str– Authentication token. Requires scope:admin.teams:write.
sourcepub async fn set_icon(&self) -> Result<DndEndSchema>
pub async fn set_icon(&self) -> Result<DndEndSchema>
This function performs a POST to the /admin.teams.settings.setIcon endpoint.
Sets the icon of a workspace.
FROM: https://api.slack.com/methods/admin.teams.settings.setIcon
sourcepub async fn set_name(&self) -> Result<DndEndSchema>
pub async fn set_name(&self) -> Result<DndEndSchema>
This function performs a POST to the /admin.teams.settings.setName endpoint.
Set the name of a given workspace.
FROM: https://api.slack.com/methods/admin.teams.settings.setName
Parameters:
token: &str– Authentication token. Requires scope:admin.teams:write.