interface VatParam {
    account_coll:
        | null
        | { account_id: number; account_number: string; label: string };
    account_ded:
        | null
        | { account_id: number; account_number: string; label: string };
    blocked: boolean;
    code: string;
    vat: { id: number; rate: number };
    vat_exigility: VatExigility;
    vat_param_id: number;
    vat_type: VatType;
}

Properties

account_coll:
    | null
    | { account_id: number; account_number: string; label: string }

Type declaration

  • null
  • { account_id: number; account_number: string; label: string }
    • account_id: number

      Internal (postgres incremented) account id

    • account_number: string

      Account number (or class). Example: 411FOOBAR

    • label: string

      Account name

account_ded:
    | null
    | { account_id: number; account_number: string; label: string }

Type declaration

  • null
  • { account_id: number; account_number: string; label: string }
    • account_id: number

      Internal (postgres incremented) account id

    • account_number: string

      Account number (or class). Example: 411FOOBAR

    • label: string

      Account name

blocked: boolean
code: string
vat: { id: number; rate: number }
vat_exigility: VatExigility
vat_param_id: number
vat_type: VatType