node-ovh-ts
Version:
OVH API wrapper library for TypeScript
12 lines (9 loc) • 361 B
TypeScript
import { DedicatedCloudBackupBackupTypeEnum } from './DedicatedCloudBackupBackupTypeEnum.js';
type DedicatedCloudBackupRestorePoint = {
creationTime?: Date | null;
isCorrupted?: boolean | null;
restorePointId?: number;
size?: number | null;
type?: DedicatedCloudBackupBackupTypeEnum | null;
};
export { DedicatedCloudBackupRestorePoint };