UNPKG

@circle-fin/circle-sdk

Version:
26 lines (25 loc) 1.13 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Enumerated reason for a returned payment. Providing this reason in the request is recommended (to improve risk evaluation) but not required. * @export * @enum {string} */ export declare const ReversalReason: { readonly Duplicate: "duplicate"; readonly Fraudulent: "fraudulent"; readonly RequestedByCustomer: "requested_by_customer"; readonly BankTransactionError: "bank_transaction_error"; readonly InvalidAccountNumber: "invalid_account_number"; readonly InsufficientFunds: "insufficient_funds"; readonly PaymentStoppedByIssuer: "payment_stopped_by_issuer"; readonly PaymentReturned: "payment_returned"; readonly BankAccountIneligible: "bank_account_ineligible"; readonly InvalidAchRtn: "invalid_ach_rtn"; readonly UnauthorizedTransaction: "unauthorized_transaction"; readonly PaymentFailed: "payment_failed"; }; export declare type ReversalReason = typeof ReversalReason[keyof typeof ReversalReason];