1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type UsergroupsUsersUpdateResponse = WebAPICallResult & {
|
3 | error?: string;
|
4 | needed?: string;
|
5 | ok?: boolean;
|
6 | provided?: string;
|
7 | usergroup?: Usergroup;
|
8 | };
|
9 | export interface Usergroup {
|
10 | auto_provision?: boolean;
|
11 | channel_count?: number;
|
12 | created_by?: string;
|
13 | date_create?: number;
|
14 | date_delete?: number;
|
15 | date_update?: number;
|
16 | description?: string;
|
17 | enterprise_subteam_id?: string;
|
18 | handle?: string;
|
19 | id?: string;
|
20 | is_external?: boolean;
|
21 | is_subteam?: boolean;
|
22 | is_usergroup?: boolean;
|
23 | name?: string;
|
24 | prefs?: Prefs;
|
25 | team_id?: string;
|
26 | updated_by?: string;
|
27 | users?: string[];
|
28 | }
|
29 | export interface Prefs {
|
30 | channels?: string[];
|
31 | groups?: string[];
|
32 | }
|
33 |
|
\ | No newline at end of file |