pub struct AdminAppsRequests {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl AdminAppsRequests
impl AdminAppsRequests
Sourcepub async fn list(
&self,
limit: i64,
cursor: &str,
team_id: &str,
) -> Result<Response<DndEndSchema>, ClientError>
pub async fn list( &self, limit: i64, cursor: &str, team_id: &str, ) -> Result<Response<DndEndSchema>, ClientError>
This function performs a GET to the /admin.apps.requests.list endpoint.
List app requests for a team/workspace.
FROM: https://api.slack.com/methods/admin.apps.requests.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: &str
Auto Trait Implementations§
impl Freeze for AdminAppsRequests
impl !RefUnwindSafe for AdminAppsRequests
impl Send for AdminAppsRequests
impl Sync for AdminAppsRequests
impl Unpin for AdminAppsRequests
impl !UnwindSafe for AdminAppsRequests
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