UNPKG

slack-web-api-client

Version:
35 lines 887 B
import type { SlackAPIResponse } from "../response"; export type UsergroupsCreateResponse = SlackAPIResponse & { error?: string; needed?: string; ok: boolean; provided?: string; usergroup?: Usergroup; }; export interface Usergroup { auto_provision?: boolean; channel_count?: number; created_by?: string; date_create?: number; date_delete?: number; date_update?: number; description?: string; enterprise_subteam_id?: string; handle?: string; id?: string; is_external?: boolean; is_idp_group?: boolean; is_section?: boolean; is_subteam?: boolean; is_usergroup?: boolean; name?: string; prefs?: Prefs; team_id?: string; updated_by?: string; users?: string[]; } export interface Prefs { channels?: string[]; groups?: string[]; } //# sourceMappingURL=UsergroupsCreateResponse.d.ts.map