import { Quantity } from './Quantity';
import { Price } from '../../order/Price';
/** HourlyRancherDetail */
export interface HourlyRancherDetail {
    /** Hours of Rancher */
    quantity: Quantity;
    /** Rancher ID */
    rancherId: string;
    /** Resource ID */
    resourceId: string;
    /** Total price */
    totalPrice: Price;
}
//# sourceMappingURL=HourlyRancherDetail.d.ts.map