UNPKG

857 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type TeamInfoResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 provided?: string;
7 team?: Team;
8};
9export interface Team {
10 avatar_base_url?: string;
11 discoverable?: string;
12 domain?: string;
13 email_domain?: string;
14 enterprise_domain?: string;
15 enterprise_id?: string;
16 enterprise_name?: string;
17 icon?: Icon;
18 id?: string;
19 is_verified?: boolean;
20 lob_sales_home_enabled?: boolean;
21 name?: string;
22 url?: string;
23}
24export interface Icon {
25 image_102?: string;
26 image_132?: string;
27 image_230?: string;
28 image_34?: string;
29 image_44?: string;
30 image_68?: string;
31 image_88?: string;
32 image_default?: boolean;
33 image_original?: string;
34}
35//# sourceMappingURL=TeamInfoResponse.d.ts.map
\No newline at end of file