UNPKG

477 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AppsEventAuthorizationsListResponse = WebAPICallResult & {
3 authorizations?: Authorization[];
4 error?: string;
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8};
9export interface Authorization {
10 enterprise_id?: string;
11 is_bot?: boolean;
12 is_enterprise_install?: boolean;
13 team_id?: string;
14 user_id?: string;
15}
16//# sourceMappingURL=AppsEventAuthorizationsListResponse.d.ts.map
\No newline at end of file