UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

40 lines 1.04 kB
import type { WebAPICallResult } from '../../WebClient'; export type UsergroupsUpdateResponse = WebAPICallResult & { error?: string; needed?: string; ok?: boolean; provided?: string; usergroup?: Usergroup; warning?: string; }; 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_editing_restricted?: boolean; is_external?: boolean; is_idp_group?: boolean; is_membership_locked?: boolean; is_org_level?: boolean; is_section?: boolean; is_subteam?: boolean; is_usergroup?: boolean; is_visible?: boolean; name?: string; prefs?: Prefs; team_id?: string; updated_by?: string; users?: string[]; } export interface Prefs { channels?: string[]; groups?: string[]; } //# sourceMappingURL=UsergroupsUpdateResponse.d.ts.map