mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 21:07:58 +08:00
feat(connector): Integrate PAZE Wallet (#6030)
This commit is contained in:
@ -91,6 +91,7 @@ pub enum WalletType {
|
||||
Cashapp,
|
||||
Venmo,
|
||||
Mifinity,
|
||||
Paze,
|
||||
}
|
||||
|
||||
#[derive(
|
||||
|
||||
@ -58,6 +58,7 @@ impl From<enums::WalletType> for global_enums::PaymentMethodType {
|
||||
enums::WalletType::Cashapp => Self::Cashapp,
|
||||
enums::WalletType::Venmo => Self::Venmo,
|
||||
enums::WalletType::Mifinity => Self::Mifinity,
|
||||
enums::WalletType::Paze => Self::Paze,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -188,6 +188,7 @@ impl IntoDirValue for (global_enums::PaymentMethodType, global_enums::PaymentMet
|
||||
global_enums::PaymentMethodType::OpenBankingPIS => {
|
||||
Ok(dirval!(OpenBankingType = OpenBankingPIS))
|
||||
}
|
||||
global_enums::PaymentMethodType::Paze => Ok(dirval!(WalletType = Paze)),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user