1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type AdminTeamsSettingsInfoResponse = WebAPICallResult & {
|
3 | error?: string;
|
4 | needed?: string;
|
5 | ok?: boolean;
|
6 | provided?: string;
|
7 | team?: Team;
|
8 | };
|
9 | export interface Team {
|
10 | avatar_base_url?: string;
|
11 | default_channels?: 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 | name?: string;
|
21 | url?: string;
|
22 | }
|
23 | export interface Icon {
|
24 | image_102?: string;
|
25 | image_132?: string;
|
26 | image_230?: string;
|
27 | image_34?: string;
|
28 | image_44?: string;
|
29 | image_68?: string;
|
30 | image_88?: string;
|
31 | image_default?: boolean;
|
32 | image_original?: string;
|
33 | }
|
34 |
|
\ | No newline at end of file |