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