import { MethodEnum } from '../http/MethodEnum';
import { Ip } from '../Ip';
/** 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