import { DomainObject } from "./domain-object"; import { LedgerAccount } from "./ledger-account"; import { LedgerVatType, LedgerVatPrincipleType, LedgerVatRateType } from "./all.enum"; export declare class LedgerAccountVat extends DomainObject { VatCode?: string | undefined; Blocked?: boolean | undefined; VatType?: LedgerVatType | undefined; VatPrinciple?: LedgerVatPrincipleType | undefined; VatRateType?: LedgerVatRateType | undefined; VatRatePercent?: number | undefined; AccountId?: string | undefined; Account?: LedgerAccount | undefined; } //# sourceMappingURL=ledger-account-vat.d.ts.map