import { StatusEnum } from './userLogs/StatusEnum';
/** Hosting users logs */
export interface UserLogs {
    /** Date of the user creation */
    creationDate: string;
    /** Description field for you */
    description?: string;
    /** The userLogs login used to connect to logs.ovh.net */
    login: string;
    /** OwnLogs where this userLogs will be enable. Default : main domain ownlogs */
    ownLogsId?: number;
    /** Status of this userLogs */
    status: StatusEnum;
    /** The task ID working on this userLogs */
    taskId?: number;
}
//# sourceMappingURL=UserLogs.d.ts.map