UNPKG

511 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminConversationsBulkMoveResponse = 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};
11export interface NotAdded {
12 channel_id?: string;
13 errors?: string[];
14}
15export interface ResponseMetadata {
16 messages?: string[];
17}
18//# sourceMappingURL=AdminConversationsBulkMoveResponse.d.ts.map
\No newline at end of file