import { DomainObject } from "./domain-object"; import { Product } from "./product"; import { ColorDimension } from "./color-dimension"; import { ConfigDimension } from "./config-dimension"; import { SizeDimension } from "./size-dimension"; import { Currency } from "./currency"; import { InvoiceLineStatus, UserType } from "./all.enum"; import { Unit } from "./unit"; import { Beacon } from "./beacon"; import { InventLocation } from "./invent-location"; import { WMSLocation } from "./wms-location"; import { ServiceObject } from "./service-object"; import { SalesLine } from "./sales-line"; import { Invoice } from "./invoice"; export declare class InvoiceLine extends DomainObject { LineId?: string | undefined; LineNumber?: number | undefined; Qty?: number | undefined; Status?: InvoiceLineStatus | undefined; InvoiceId?: string | undefined; Invoice?: Invoice | undefined; ProductId?: string | undefined; Product?: Product | undefined; ColorId?: string | undefined; Color?: ColorDimension | undefined; SizeId?: string | undefined; Size?: SizeDimension | undefined; ConfigId?: string | undefined; Config?: ConfigDimension | undefined; UnitPrice?: number | undefined; DiscountAmount?: number | undefined; DiscountPercent?: number | undefined; TotalAmount?: number | undefined; VatPercent?: number | undefined; CurrencyId?: string | undefined; Currency?: Currency; UnitId?: string | undefined; Unit?: Unit | undefined; Height?: number | undefined; Width?: number | undefined; Depth?: number | undefined; Weight?: number | undefined; Volume?: number | undefined; Customs_Amount?: number | undefined; Note?: string | undefined; ServiceObjectId?: string | undefined; ServiceObject?: ServiceObject | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; InventLocationId?: string | undefined; InventLocation?: InventLocation | undefined; WMSLocationId?: string | undefined; WMSLocation?: WMSLocation | undefined; SalesLineId?: string | undefined; SalesLine?: SalesLine | undefined; ApprovedDate?: Date | undefined; Id_ApprovedBy?: string | undefined; UserType_ApprovedBy?: UserType | undefined; } //# sourceMappingURL=invoice-line.d.ts.map