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