import { UnitAndValueLong } from '../complexType/UnitAndValueLong';
import { BackupTypeEnum } from './backup/BackupTypeEnum';
/** Restore point */
export interface RestorePoint {
    /** Creation time of the restore point */
    creationTime?: string;
    /** Show if the restore point is corrupted */
    isCorrupted: boolean;
    /** Id of the restore point. */
    restorePointId: number;
    /** Size of the restore point */
    restorePointSize: UnitAndValueLong;
    /** Type of the restore point */
    type?: BackupTypeEnum;
}
//# sourceMappingURL=RestorePoint.d.ts.map