@slack/web-api
Version:
Official library for using the Slack Platform's Web API
18 lines • 516 B
TypeScript
import type { WebAPICallResult } from '../../WebClient';
export type AdminConversationsBulkMoveResponse = WebAPICallResult & {
bulk_action_id?: string;
error?: string;
needed?: string;
not_added?: NotAdded[];
ok?: boolean;
provided?: string;
response_metadata?: ResponseMetadata;
};
export interface NotAdded {
channel_id?: string;
errors?: string[];
}
export interface ResponseMetadata {
messages?: string[];
}
//# sourceMappingURL=AdminConversationsBulkMoveResponse.d.ts.map