UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

16 lines (13 loc) 374 B
import { CloudVolumeSnapshotStatusEnum } from './CloudVolumeSnapshotStatusEnum.js'; type CloudVolumeSnapshot = { creationDate?: Date; description?: string; id?: string; name?: string; planCode?: string | null; region?: string; size?: number; status?: CloudVolumeSnapshotStatusEnum; volumeId?: string; }; export { CloudVolumeSnapshot };