import { Currency } from "./currency"; import { DomainObject } from "./domain-object"; import { LedgerAccount } from "./ledger-account"; export declare class BankAccount extends DomainObject { AccountId?: string | undefined; Blocked?: boolean | undefined; LedgerAccountId?: string | undefined; LedgerAccount?: LedgerAccount | undefined; CurrencyId?: string | undefined; Currency?: Currency | undefined; Balance?: number | undefined; Street?: string | undefined; Street2?: string | undefined; ZipCode?: string | undefined; City?: string | undefined; Country?: string | undefined; State?: string | undefined; Phone?: string | undefined; VatNumber?: string | undefined; EAN?: string | undefined; Email?: string | undefined; BankAccountNo_Part1?: string | undefined; BankAccountNo_Part2?: string | undefined; SWIFT?: string | undefined; IBAN?: string | undefined; Contact_Name?: string | undefined; Contact_Phone?: string | undefined; Contact_Email?: string | undefined; } //# sourceMappingURL=bank-account.d.ts.map