UNPKG

598 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminTeamsListResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 provided?: string;
7 response_metadata?: ResponseMetadata;
8 teams?: Team[];
9};
10export interface ResponseMetadata {
11 next_cursor?: string;
12}
13export interface Team {
14 discoverability?: string;
15 id?: string;
16 name?: string;
17 primary_owner?: PrimaryOwner;
18 team_url?: string;
19}
20export interface PrimaryOwner {
21 email?: string;
22 user_id?: string;
23}
24//# sourceMappingURL=AdminTeamsListResponse.d.ts.map
\No newline at end of file