UNPKG

@circle-fin/circle-sdk

Version:
18 lines (17 loc) 979 B
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Enumerated status of the payment. `pending` means the payment is waiting to be processed. `confirmed` means the payment has been approved by the bank and the merchant can treat it as successful, but settlement funds are not yet available to the merchant. `paid` means settlement funds have been received and are available to the merchant. `failed` means something went wrong (most commonly that the payment was denied). Terminal states are `paid` and `failed`. * @export * @enum {string} */ export declare const CancelRefundReversalStatus: { readonly Pending: "pending"; readonly Confirmed: "confirmed"; readonly Paid: "paid"; readonly Failed: "failed"; }; export declare type CancelRefundReversalStatus = typeof CancelRefundReversalStatus[keyof typeof CancelRefundReversalStatus];