import { Currency } from "./currency"; import { DomainObject } from "./domain-object"; import { LedgerAccountVat } from "./ledger-account-vat"; import { LedgerAccountType, DebitCreditType, FinancialKeyFigureCodeType } from "./all.enum"; export declare class LedgerAccount extends DomainObject { AccountNumber?: string | undefined; Blocked?: boolean | undefined; AccountType?: LedgerAccountType | undefined; DebitCredit?: DebitCreditType | undefined; FinancialKeyFigureCode?: FinancialKeyFigureCodeType | undefined; VatAccountId?: string | undefined; VatAccount?: LedgerAccountVat | undefined; CurrencyId?: string | undefined; Currency?: Currency | undefined; } //# sourceMappingURL=ledger-account.d.ts.map