@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
20 lines • 503 B
TypeScript
import { Ip } from '../Ip';
import { MethodEnum } from '../http/MethodEnum';
/** API Log */
export interface Log {
/** Account which did the Request */
account: string;
/** Date of the request */
date: string;
/** Source IP of the request */
ip?: Ip;
/** */
logId: number;
/** HTTP Method of the request */
method: MethodEnum;
/** HTTP URI of the request */
path: string;
/** API Route called */
route: string;
}
//# sourceMappingURL=Log.d.ts.map