pub struct AdminAppsApproved {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl AdminAppsApproved
impl AdminAppsApproved
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.approved.list endpoint.
List approved apps for an org or workspace.
FROM: https://api.slack.com/methods/admin.apps.approved.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 AdminAppsApproved
impl !RefUnwindSafe for AdminAppsApproved
impl Send for AdminAppsApproved
impl Sync for AdminAppsApproved
impl Unpin for AdminAppsApproved
impl !UnwindSafe for AdminAppsApproved
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