import { Quantity } from './Quantity';
/** HourlyInstanceDetail */
export interface HourlyInstanceDetail {
    /** Instance ID */
    instanceId: string;
    /** Hours of run instances */
    quantity: Quantity;
    /** Total price */
    totalPrice: number;
}
//# sourceMappingURL=HourlyInstanceDetail.d.ts.map