import { DefaultProperties } from "../defaultProperties"; import { FreeFieldGroup } from "../freeFieldGroup"; import { OrderDomainArticle } from "./article"; import { OrderDomainOrderLineType } from "./orderLineType"; import { BtwType } from ".."; export declare class OrderDomainOrderLine extends DefaultProperties { description: string; orderLineType: OrderDomainOrderLineType; grossMargin: number; amount: number; unitPrice: number; totalPrice: number; btwPrice: number; totalPriceExclBtw: number; totalPriceInclBtw: number; btwType: BtwType; discount: number; discountPercentage: number; orderId: string; catalogId: string; article: OrderDomainArticle; groupedFreeFields: FreeFieldGroup[]; } //# sourceMappingURL=orderLine.d.ts.map