import { HourlyVolumeDetail } from './HourlyVolumeDetail';
import { Quantity } from './Quantity';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** HourlyVolume */
export interface HourlyVolume {
    /** Specifies the deployment mode of the region where the resource is deployed (for example, 1-AZ or 3-AZ). Products that are grouped by project or have no region do not include a deployment mode */
    deploymentMode?: RegionTypeEnum;
    /** 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