UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 454 B
import { HourlyVolumeDetail } from './HourlyVolumeDetail'; import { Quantity } from './Quantity'; /** HourlyVolume */ export interface HourlyVolume { /** Detail about volume consumption */ details: HourlyVolumeDetail[]; /** Total GiBh of volume */ quantity: Quantity; /** Region */ region: string; /** Total price */ totalPrice: number; /** Volume type */ type: string; } //# sourceMappingURL=HourlyVolume.d.ts.map