import { HourlyRancherDetail } from './HourlyRancherDetail';
import { Quantity } from './Quantity';
import { Price } from '../../order/Price';
/** HourlyRancher */
export interface HourlyRancher {
    /** Details about hourly Rancher */
    details: HourlyRancherDetail[];
    /** Hours of Rancher */
    quantity: Quantity;
    /** Instance reference */
    reference: string;
    /** Instance region */
    region: string;
    /** Total price */
    totalPrice: Price;
}
//# sourceMappingURL=HourlyRancher.d.ts.map