mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(connector): [AMAZONPAY] add Payment flows for Amazon Pay Wallet (#7062)
Co-authored-by: Anurag Singh <anurag.singh.001@Anurag-Singh-WPMHJ5619X.local> Co-authored-by: Anurag Singh <anurag.singh.001@AnuragSMHJ5619X.lan> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com> Co-authored-by: Anurag Singh <anurag.singh.001@MacBookPro.lan>
This commit is contained in:
@ -63,7 +63,7 @@ pub enum RoutableConnectors {
|
||||
Adyen,
|
||||
Affirm,
|
||||
Airwallex,
|
||||
// Amazonpay,
|
||||
Amazonpay,
|
||||
Archipel,
|
||||
Authorizedotnet,
|
||||
Bankofamerica,
|
||||
@ -232,7 +232,7 @@ pub enum Connector {
|
||||
Adyen,
|
||||
Affirm,
|
||||
Airwallex,
|
||||
// Amazonpay,
|
||||
Amazonpay,
|
||||
Archipel,
|
||||
Authorizedotnet,
|
||||
Bambora,
|
||||
@ -432,7 +432,7 @@ impl Connector {
|
||||
| Self::Affirm
|
||||
| Self::Adyenplatform
|
||||
| Self::Airwallex
|
||||
// | Self::Amazonpay
|
||||
| Self::Amazonpay
|
||||
| Self::Authorizedotnet
|
||||
| Self::Bambora
|
||||
| Self::Bamboraapac
|
||||
@ -606,6 +606,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Adyen => Self::Adyen,
|
||||
RoutableConnectors::Affirm => Self::Affirm,
|
||||
RoutableConnectors::Airwallex => Self::Airwallex,
|
||||
RoutableConnectors::Amazonpay => Self::Amazonpay,
|
||||
RoutableConnectors::Archipel => Self::Archipel,
|
||||
RoutableConnectors::Authorizedotnet => Self::Authorizedotnet,
|
||||
RoutableConnectors::Bankofamerica => Self::Bankofamerica,
|
||||
@ -738,6 +739,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Adyen => Ok(Self::Adyen),
|
||||
Connector::Affirm => Ok(Self::Affirm),
|
||||
Connector::Airwallex => Ok(Self::Airwallex),
|
||||
Connector::Amazonpay => Ok(Self::Amazonpay),
|
||||
Connector::Archipel => Ok(Self::Archipel),
|
||||
Connector::Authorizedotnet => Ok(Self::Authorizedotnet),
|
||||
Connector::Bankofamerica => Ok(Self::Bankofamerica),
|
||||
|
||||
Reference in New Issue
Block a user