@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 577 B
TypeScript
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