pub struct AppsEventAuthorizations {
pub client: Client,
}Fields§
§client: ClientImplementations§
Source§impl AppsEventAuthorizations
impl AppsEventAuthorizations
Sourcepub async fn list(
&self,
event_context: &str,
cursor: &str,
limit: i64,
) -> Result<Response<DndEndSchema>, ClientError>
pub async fn list( &self, event_context: &str, cursor: &str, limit: i64, ) -> Result<Response<DndEndSchema>, ClientError>
This function performs a GET to the /apps.event.authorizations.list endpoint.
Get a list of authorizations for the given event context. Each authorization represents an app installation that the event is visible to.
FROM: https://api.slack.com/methods/apps.event.authorizations.list
Parameters:
token: &str– Authentication token. Requires scope:authorizations:read.event_context: &strcursor: &strlimit: i64
Auto Trait Implementations§
impl Freeze for AppsEventAuthorizations
impl !RefUnwindSafe for AppsEventAuthorizations
impl Send for AppsEventAuthorizations
impl Sync for AppsEventAuthorizations
impl Unpin for AppsEventAuthorizations
impl !UnwindSafe for AppsEventAuthorizations
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