mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(connector): [BLUECODE] Added Bluecode Wallet QR Code Redirect Payment Method (#8762)
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
8ac5e50422
commit
c749bd9c51
@ -72,7 +72,7 @@ pub enum RoutableConnectors {
|
||||
Bambora,
|
||||
Bamboraapac,
|
||||
Bluesnap,
|
||||
// Bluecode,
|
||||
Bluecode,
|
||||
Boku,
|
||||
Braintree,
|
||||
Breadpay,
|
||||
@ -238,7 +238,7 @@ pub enum Connector {
|
||||
Billwerk,
|
||||
Bitpay,
|
||||
Bluesnap,
|
||||
// Bluecode,
|
||||
Bluecode,
|
||||
Boku,
|
||||
Braintree,
|
||||
Breadpay,
|
||||
@ -431,7 +431,7 @@ impl Connector {
|
||||
| Self::Billwerk
|
||||
| Self::Bitpay
|
||||
| Self::Bluesnap
|
||||
// | Self::Bluecode
|
||||
| Self::Bluecode
|
||||
| Self::Boku
|
||||
| Self::Braintree
|
||||
| Self::Breadpay
|
||||
@ -602,7 +602,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Bambora => Self::Bambora,
|
||||
RoutableConnectors::Bamboraapac => Self::Bamboraapac,
|
||||
RoutableConnectors::Bluesnap => Self::Bluesnap,
|
||||
// RoutableConnectors::Bluecode => Self::Bluecode,
|
||||
RoutableConnectors::Bluecode => Self::Bluecode,
|
||||
RoutableConnectors::Boku => Self::Boku,
|
||||
RoutableConnectors::Braintree => Self::Braintree,
|
||||
RoutableConnectors::Breadpay => Self::Breadpay,
|
||||
@ -731,7 +731,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Bambora => Ok(Self::Bambora),
|
||||
Connector::Bamboraapac => Ok(Self::Bamboraapac),
|
||||
Connector::Bluesnap => Ok(Self::Bluesnap),
|
||||
// Connector::Bluecode => Ok(Self::Bluecode),
|
||||
Connector::Bluecode => Ok(Self::Bluecode),
|
||||
Connector::Boku => Ok(Self::Boku),
|
||||
Connector::Braintree => Ok(Self::Braintree),
|
||||
Connector::Breadpay => Ok(Self::Breadpay),
|
||||
|
||||
@ -1940,6 +1940,7 @@ pub enum PaymentMethodType {
|
||||
Benefit,
|
||||
Bizum,
|
||||
Blik,
|
||||
Bluecode,
|
||||
Boleto,
|
||||
BcaBankTransfer,
|
||||
BniVa,
|
||||
@ -2062,6 +2063,7 @@ impl PaymentMethodType {
|
||||
Self::Benefit => "Benefit",
|
||||
Self::Bizum => "Bizum",
|
||||
Self::Blik => "BLIK",
|
||||
Self::Bluecode => "Bluecode",
|
||||
Self::Boleto => "Boleto Bancário",
|
||||
Self::BcaBankTransfer => "BCA Bank Transfer",
|
||||
Self::BniVa => "BNI Virtual Account",
|
||||
|
||||
@ -1815,6 +1815,7 @@ impl From<PaymentMethodType> for PaymentMethod {
|
||||
PaymentMethodType::Benefit => Self::CardRedirect,
|
||||
PaymentMethodType::Bizum => Self::BankRedirect,
|
||||
PaymentMethodType::Blik => Self::BankRedirect,
|
||||
PaymentMethodType::Bluecode => Self::Wallet,
|
||||
PaymentMethodType::Alfamart => Self::Voucher,
|
||||
PaymentMethodType::CardRedirect => Self::CardRedirect,
|
||||
PaymentMethodType::CimbVa => Self::BankTransfer,
|
||||
|
||||
Reference in New Issue
Block a user