feat(Connector): [Stripe] Implement Cashapp Wallet (#1103)

This commit is contained in:
AkshayaFoiger
2023-08-01 23:51:30 +05:30
committed by GitHub
parent 50298c1967
commit dadd13e381
14 changed files with 112 additions and 13 deletions

View File

@ -881,6 +881,7 @@ pub enum PaymentMethodType {
ClassicReward,
Credit,
CryptoCurrency,
Cashapp,
Dana,
Debit,
Efecty,

View File

@ -1594,6 +1594,7 @@ impl From<PaymentMethodType> for PaymentMethod {
PaymentMethodType::PagoEfectivo => Self::Voucher,
PaymentMethodType::RedCompra => Self::Voucher,
PaymentMethodType::RedPagos => Self::Voucher,
PaymentMethodType::Cashapp => Self::Wallet,
}
}
}