import { HourlyDetail } from './HourlyDetail';
import { Quantity } from './Quantity';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
import { Price } from '../../order/Price';
/** HourlyQuantumNotebook */
export interface HourlyQuantumNotebook {
    /** 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;
    /** Details about quantums */
    details: HourlyDetail[];
    /** Quantum quantity */
    quantity: Quantity;
    /** Quantum reference */
    reference: string;
    /** Quantum region */
    region: string;
    /** Total price */
    totalPrice: Price;
}
//# sourceMappingURL=HourlyQuantumNotebook.d.ts.map