import { HourlyInstanceDetail } from './HourlyInstanceDetail';
import { Quantity } from './Quantity';
/** HourlyInstance */
export interface HourlyInstance {
    /** Details about hourly instances */
    details: HourlyInstanceDetail[];
    /** Hours of run instances */
    quantity: Quantity;
    /** Instance reference */
    reference: string;
    /** Instance region */
    region: string;
    /** Total price */
    totalPrice: number;
}
//# sourceMappingURL=HourlyInstance.d.ts.map