import { SalesAppBtwType } from "./btwType"; import { SalesAppArticle } from "./article"; import { SalesAppCatalog } from "./catalog"; export declare class SalesAppOrderLine { publicId: string; btwTypeId: string; discount: number; discountPercentage: number; amount: number; unitPrice: number; btwPrice: number; totalPriceExclBtw: number; totalPriceInclBtw: number; image: string; article: SalesAppArticle; btwType: SalesAppBtwType; catalog?: SalesAppCatalog; } export declare class WriteSalesAppOrderLine { publicId: string; discount?: number; amount: number; sellPriceExclBtw: number; articlePublicId: string; catalogPublicId?: string; } //# sourceMappingURL=orderLine.d.ts.map