/* tslint:disable */
/* eslint-disable */
/**
 * 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 const CancelRefundReversalStatus = {
  Pending: "pending",
  Confirmed: "confirmed",
  Paid: "paid",
  Failed: "failed"
} as const;

export type CancelRefundReversalStatus =
  typeof CancelRefundReversalStatus[keyof typeof CancelRefundReversalStatus];
