UNPKG

708 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminUsersSessionListResponse = WebAPICallResult & {
3 active_sessions?: ActiveSession[];
4 error?: string;
5 needed?: string;
6 ok?: boolean;
7 provided?: string;
8 response_metadata?: ResponseMetadata;
9};
10export interface ActiveSession {
11 created?: Created;
12 recent?: Created;
13 session_id?: number;
14 team_id?: string;
15 user_id?: string;
16}
17export interface Created {
18 device_hardware?: string;
19 ip?: string;
20 os?: string;
21 os_version?: string;
22 slack_client_version?: string;
23}
24export interface ResponseMetadata {
25 next_cursor?: string;
26}
27//# sourceMappingURL=AdminUsersSessionListResponse.d.ts.map
\No newline at end of file