import type * as Merge from "../../../index"; /** * The status of the invoice. * * * `PAID` - PAID * * `DRAFT` - DRAFT * * `SUBMITTED` - SUBMITTED * * `PARTIALLY_PAID` - PARTIALLY_PAID * * `OPEN` - OPEN * * `VOID` - VOID */ export type InvoiceStatus = Merge.accounting.InvoiceStatusEnum | string;