import type * as Merge from "../../../index"; /** * Whether the invoice is an accounts receivable or accounts payable. If `type` is `ACCOUNTS_PAYABLE`, the invoice is a bill. If `type` is `ACCOUNTS_RECEIVABLE`, it is an invoice. * * * `ACCOUNTS_RECEIVABLE` - ACCOUNTS_RECEIVABLE * * `ACCOUNTS_PAYABLE` - ACCOUNTS_PAYABLE */ export type InvoiceType = Merge.accounting.InvoiceTypeEnum | string;