Updated payment source types + unit tests#336
Merged
Conversation
|
armando-rodriguez-cko
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This pull request adds support for a wide range of new alternative payment methods (APMs) by introducing new payment source types and corresponding request source classes. These changes enable the system to handle additional payment options such as ACH, Bizum, Blik, MobilePay, Octopus, PayNow, Plaid, Sequra, Swish, Twint, and Vipps, among others. The update primarily involves extending the
PaymentSourceTypeenumeration and implementing new request classes for each APM, some of which include additional relevant fields.Support for new payment source types:
PaymentSourceTypefor various APMs, includingbizum,ach,blik,mobilepay,octopus,paynow,plaid,sequra,swish,twint, andvipps.New request source classes for APMs:
Apmnamespace for each supported APM:RequestAchSource,RequestBizumSource,RequestBlikSource,RequestMobilePaySource,RequestOctopusPaySource,RequestPayNowSource,RequestPlaidSource,RequestSequraSource,RequestSwishSource,RequestTwintSource,RequestVippsSource, and others. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]Additional fields for specific payment sources:
account_type,country,account_numberfor ACH,partner_agreement_idfor Blik,tokenandaccount_holderfor Plaid,billing_addressfor Sequra, andbilling_descriptorfor Swish. [1] [2] [3] [4] [5]These changes collectively expand the system's capability to support a broader array of payment methods, improving flexibility and coverage for international payments.