1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type CallsAddResponse = WebAPICallResult & {
|
3 | call?: Call;
|
4 | error?: string;
|
5 | needed?: string;
|
6 | ok?: boolean;
|
7 | provided?: string;
|
8 | response_metadata?: ResponseMetadata;
|
9 | };
|
10 | export interface Call {
|
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 | }
|
20 | export interface User {
|
21 | avatar_url?: string;
|
22 | display_name?: string;
|
23 | external_id?: string;
|
24 | slack_id?: string;
|
25 | }
|
26 | export interface ResponseMetadata {
|
27 | messages?: string[];
|
28 | }
|
29 |
|
\ | No newline at end of file |