UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

40 lines 1.24 kB
import { WebAPICallResult } from '../WebClient'; export type AdminConversationsSearchResponse = WebAPICallResult & { conversations?: Conversation[]; error?: string; needed?: string; next_cursor?: string; ok?: boolean; provided?: string; }; export interface Conversation { channel_email_addresses?: string[]; channel_manager_count?: number; connected_limited_team_ids?: string[]; connected_team_ids?: string[]; conversation_host_id?: string; created?: number; creator_id?: string; external_user_count?: number; id?: string; internal_team_ids?: string[]; internal_team_ids_count?: number; internal_team_ids_sample_team?: string; is_archived?: boolean; is_disconnect_in_progress?: boolean; is_ext_shared?: boolean; is_frozen?: boolean; is_general?: boolean; is_global_shared?: boolean; is_org_default?: boolean; is_org_mandatory?: boolean; is_org_shared?: boolean; is_pending_ext_shared?: boolean; is_private?: boolean; last_activity_ts?: number; member_count?: number; name?: string; pending_connected_team_ids?: string[]; purpose?: string; } //# sourceMappingURL=AdminConversationsSearchResponse.d.ts.map