import { OrderDetailTypeEnum } from '../order/OrderDetailTypeEnum';
import { Price } from '../order/Price';
/** Information about a Bill entry */
export interface OrderDetail {
    /**  */
    cancelled: boolean;
    /**  */
    description: string;
    /**  */
    detailType?: OrderDetailTypeEnum;
    /**  */
    domain: string;
    /**  */
    orderDetailId: number;
    /**  */
    quantity: string;
    /**  */
    totalPrice: Price;
    /**  */
    unitPrice: Price;
}
//# sourceMappingURL=OrderDetail.d.ts.map