slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
36 lines • 891 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type TeamInfoResponse = SlackAPIResponse & {
error?: string;
needed?: string;
ok: boolean;
provided?: string;
team?: Team;
};
export interface Team {
avatar_base_url?: string;
discoverable?: string;
domain?: string;
email_domain?: string;
enterprise_domain?: string;
enterprise_id?: string;
enterprise_name?: string;
icon?: Icon;
id?: string;
is_sfdc_auto_slack?: boolean;
is_verified?: boolean;
lob_sales_home_enabled?: boolean;
name?: string;
url?: string;
}
export interface Icon {
image_102?: string;
image_132?: string;
image_230?: string;
image_34?: string;
image_44?: string;
image_68?: string;
image_88?: string;
image_default?: boolean;
image_original?: string;
}
//# sourceMappingURL=TeamInfoResponse.d.ts.map