@slack/web-api
Version:
Official library for using the Slack Platform's Web API
28 lines • 638 B
TypeScript
import { WebAPICallResult } from '../WebClient';
export type TeamAccessLogsResponse = WebAPICallResult & {
error?: string;
logins?: Login[];
needed?: string;
ok?: boolean;
paging?: Paging;
provided?: string;
};
export interface Login {
count?: number;
country?: string;
date_first?: number;
date_last?: number;
ip?: string;
isp?: string;
region?: string;
user_agent?: string;
user_id?: string;
username?: string;
}
export interface Paging {
count?: number;
page?: number;
pages?: number;
total?: number;
}
//# sourceMappingURL=TeamAccessLogsResponse.d.ts.map