import type * as Merge from "../../../index"; /** * Possible per-object statuses: * * * `PENDING` - This object has not been processed yet * * `SUCCESS` - This object was successfully POSTed * * `FAILURE` - This object was not successfully POSTed * * * `PENDING` - PENDING * * `SUCCESS` - SUCCESS * * `FAILURE` - FAILURE */ export type BatchObjectStatus = Merge.accounting.BatchObjectStatusEnum | string;