import { DomainObject } from "./domain-object"; import { Project } from "./project"; import { Production } from "./production"; import { Location } from "./location"; import { BankAccount } from "./bank-account"; import { SalesPaymentType } from "./all.enum"; export declare class PaymentLedgerMapping extends DomainObject { PaymentType?: SalesPaymentType | undefined; Value1?: string | undefined; Value2?: string | undefined; Value3?: string | undefined; Value4?: string | undefined; LedgerAccount?: string | undefined; ProjectId?: string | undefined; Project?: Project | undefined; ProductionId?: string | undefined; Production?: Production | undefined; LocationId?: string | undefined; Location?: Location | undefined; BankAccountId?: string | undefined; BankAccount?: BankAccount | undefined; } //# sourceMappingURL=payment-ledger-mapping.d.ts.map