mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
feat(connector): [SANTANDER] Added Authorize, PSync, Void, Refund & RSync Flows for Pix QR Code Bank Transfer (#8463)
Co-authored-by: Sayak Bhattacharya <sayak.b@Sayak-Bhattacharya-G092THXJ34.local> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
2ff93ff972
commit
28d63575e6
@ -132,7 +132,7 @@ pub enum RoutableConnectors {
|
||||
Recurly,
|
||||
Redsys,
|
||||
Riskified,
|
||||
// Santander,
|
||||
Santander,
|
||||
Shift4,
|
||||
Signifyd,
|
||||
Square,
|
||||
@ -293,7 +293,7 @@ pub enum Connector {
|
||||
Razorpay,
|
||||
Recurly,
|
||||
Redsys,
|
||||
// Santander,
|
||||
Santander,
|
||||
Shift4,
|
||||
Square,
|
||||
Stax,
|
||||
@ -465,7 +465,7 @@ impl Connector {
|
||||
| Self::Rapyd
|
||||
| Self::Recurly
|
||||
| Self::Redsys
|
||||
// | Self::Santander
|
||||
| Self::Santander
|
||||
| Self::Shift4
|
||||
| Self::Square
|
||||
| Self::Stax
|
||||
@ -627,7 +627,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Recurly => Self::Recurly,
|
||||
RoutableConnectors::Redsys => Self::Redsys,
|
||||
RoutableConnectors::Riskified => Self::Riskified,
|
||||
// RoutableConnectors::Santander => Self::Santander,
|
||||
RoutableConnectors::Santander => Self::Santander,
|
||||
RoutableConnectors::Shift4 => Self::Shift4,
|
||||
RoutableConnectors::Signifyd => Self::Signifyd,
|
||||
RoutableConnectors::Square => Self::Square,
|
||||
@ -744,7 +744,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Rapyd => Ok(Self::Rapyd),
|
||||
Connector::Razorpay => Ok(Self::Razorpay),
|
||||
Connector::Riskified => Ok(Self::Riskified),
|
||||
// Connector::Santander => Ok(Self::Santander),
|
||||
Connector::Santander => Ok(Self::Santander),
|
||||
Connector::Shift4 => Ok(Self::Shift4),
|
||||
Connector::Signifyd => Ok(Self::Signifyd),
|
||||
Connector::Square => Ok(Self::Square),
|
||||
|
||||
Reference in New Issue
Block a user