interface Account {
    account_id: number;
    account_number: string;
    counterpart_account?:
        | null
        | { account_id: number; account_number: string; label: string };
    label: string;
}

Hierarchy (View Summary)

Properties

account_id: number

Internal (postgres incremented) account id

account_number: string

Account number (or class). Example: 411FOOBAR

counterpart_account?:
    | 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

label: string

Account name