import type * as Merge from "../../../index"; /** * The status of the sales order. * * * `DRAFT` - DRAFT * * `PENDING_APPROVAL` - PENDING_APPROVAL * * `OPEN` - OPEN * * `PARTIALLY_COMPLETED` - PARTIALLY_COMPLETED * * `COMPLETED` - COMPLETED * * `CLOSED` - CLOSED */ export type SalesOrderRequestRequestStatus = Merge.accounting.SalesOrderStatusEnum | string;