1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type AdminConversationsBulkDeleteResponse = WebAPICallResult & {
|
3 | bulk_action_id?: string;
|
4 | error?: string;
|
5 | needed?: string;
|
6 | not_added?: NotAdded[];
|
7 | ok?: boolean;
|
8 | provided?: string;
|
9 | response_metadata?: ResponseMetadata;
|
10 | };
|
11 | export interface NotAdded {
|
12 | channel_id?: string;
|
13 | errors?: string[];
|
14 | }
|
15 | export interface ResponseMetadata {
|
16 | messages?: string[];
|
17 | }
|
18 | //# sourceMappingURL=AdminConversationsBulkDeleteResponse.d.ts.map |
\ | No newline at end of file |