import { UnitAndValueLong } from '../../complexType/UnitAndValueLong';
import { BackupTypeEnum } from './BackupTypeEnum';
/** Details about a 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 */
    size?: UnitAndValueLong;
    /** Type of the restore point */
    type?: BackupTypeEnum;
}
//# sourceMappingURL=RestorePoint.d.ts.map