FEAT: Add Support for Amazon Pay Redirect and Amazon Pay payment via Stripe (#7056)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
sweta-kumari-sharma
2025-02-05 19:12:35 +05:30
committed by GitHub
parent ce2485c3c7
commit b54a3f9142
49 changed files with 142 additions and 4 deletions

View File

@ -1557,6 +1557,7 @@ pub enum PaymentMethodType {
AliPay,
AliPayHk,
Alma,
AmazonPay,
ApplePay,
Atome,
Bacs,

View File

@ -1799,6 +1799,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::AliPay => Self::Wallet,
PaymentMethodType::AliPayHk => Self::Wallet,
PaymentMethodType::Alma => Self::PayLater,
PaymentMethodType::AmazonPay => Self::Wallet,
PaymentMethodType::ApplePay => Self::Wallet,
PaymentMethodType::Bacs => Self::BankDebit,
PaymentMethodType::BancontactCard => Self::BankRedirect,