import { Quantity } from './Quantity';
/** HourlyVolumeDetail */
export interface HourlyVolumeDetail {
    /** GiBh of volume */
    quantity: Quantity;
    /** Total price */
    totalPrice: number;
    /** Volume ID */
    volumeId: string;
}
//# sourceMappingURL=HourlyVolumeDetail.d.ts.map