UNPKG

639 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type CallsInfoResponse = WebAPICallResult & {
3 call?: Call;
4 error?: string;
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8};
9export interface Call {
10 channels?: string[];
11 date_start?: number;
12 desktop_app_join_url?: string;
13 external_display_id?: string;
14 external_unique_id?: string;
15 id?: string;
16 join_url?: string;
17 title?: string;
18 users?: User[];
19}
20export interface User {
21 avatar_url?: string;
22 display_name?: string;
23 external_id?: string;
24 slack_id?: string;
25}
26//# sourceMappingURL=CallsInfoResponse.d.ts.map
\No newline at end of file