import { DateEnum } from './dump/DateEnum';
import { StatusEnum } from './dump/StatusEnum';
/** Dump */
export interface Dump {
    /** Creation date of the dump */
    creationDate: string;
    /** Automatic deletion date of the dump */
    deletionDate: string;
    /** Dump id */
    id: number;
    /** The dump status */
    status: StatusEnum;
    /** The task ID working on this dump */
    taskId?: number;
    /** Dump type */
    type: DateEnum;
    /** Dump url access */
    url?: string;
}
//# sourceMappingURL=Dump.d.ts.map