UNPKG

432 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type AdminAuthPolicyGetEntitiesResponse = WebAPICallResult & {
3 entities?: Entity[];
4 entity_total_count?: number;
5 error?: string;
6 needed?: string;
7 ok?: boolean;
8 provided?: string;
9};
10export interface Entity {
11 date_added?: number;
12 entity_id?: string;
13 entity_type?: string;
14}
15//# sourceMappingURL=AdminAuthPolicyGetEntitiesResponse.d.ts.map
\No newline at end of file