pub struct AdminAppsRestricted {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl AdminAppsRestricted
impl AdminAppsRestricted
Sourcepub async fn list(
&self,
limit: i64,
cursor: &str,
team_id: &str,
enterprise_id: &str,
) -> Result<Response<DndEndSchema>, ClientError>
pub async fn list( &self, limit: i64, cursor: &str, team_id: &str, enterprise_id: &str, ) -> Result<Response<DndEndSchema>, ClientError>
This function performs a GET to the /admin.apps.restricted.list endpoint.
List restricted apps for an org or workspace.
FROM: https://api.slack.com/methods/admin.apps.restricted.list
Parameters:
token: &str– Authentication token. Requires scope:admin.apps:read.limit: i64– The maximum number of items to return. Must be between 1 - 1000 both inclusive.cursor: &str– Setcursortonext_cursorreturned by the previous call to list items in the next page.team_id: &strenterprise_id: &str
Auto Trait Implementations§
impl Freeze for AdminAppsRestricted
impl !RefUnwindSafe for AdminAppsRestricted
impl Send for AdminAppsRestricted
impl Sync for AdminAppsRestricted
impl Unpin for AdminAppsRestricted
impl !UnwindSafe for AdminAppsRestricted
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more