UNPKG

818 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type TeamIntegrationLogsResponse = WebAPICallResult & {
3 error?: string;
4 logs?: Log[];
5 needed?: string;
6 ok?: boolean;
7 paging?: Paging;
8 provided?: string;
9};
10export interface Log {
11 app_id?: string;
12 app_type?: string;
13 change_type?: string;
14 channel?: string;
15 date?: string;
16 reason?: string;
17 resolution?: string;
18 rss_feed?: boolean;
19 rss_feed_change_type?: string;
20 rss_feed_title?: string;
21 rss_feed_url?: string;
22 scope?: string;
23 service_id?: number;
24 service_type?: string;
25 user_id?: string;
26 user_name?: string;
27}
28export interface Paging {
29 count?: number;
30 page?: number;
31 pages?: number;
32 total?: number;
33}
34//# sourceMappingURL=TeamIntegrationLogsResponse.d.ts.map
\No newline at end of file