UNPKG

747 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type TeamAccessLogsResponse = WebAPICallResult & {
3 error?: string;
4 logins?: Login[];
5 needed?: string;
6 ok?: boolean;
7 paging?: Paging;
8 provided?: string;
9 response_metadata?: ResponseMetadata;
10};
11export interface Login {
12 count?: number;
13 country?: string;
14 date_first?: number;
15 date_last?: number;
16 ip?: string;
17 isp?: string;
18 region?: string;
19 user_agent?: string;
20 user_id?: string;
21 username?: string;
22}
23export interface Paging {
24 count?: number;
25 page?: number;
26 pages?: number;
27 total?: number;
28}
29export interface ResponseMetadata {
30 next_cursor?: string;
31}
32//# sourceMappingURL=TeamAccessLogsResponse.d.ts.map
\No newline at end of file