mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 01:27:31 +08:00
feat(connector): [Adyen] Implement Gcash for Adyen (#1576)
Co-authored-by: Sangamesh Kulkarni <59434228+Sangamesh26@users.noreply.github.com>
This commit is contained in:
@ -956,6 +956,8 @@ pub enum WalletData {
|
||||
KakaoPayRedirect(KakaoPayRedirection),
|
||||
/// The wallet data for GoPay redirect
|
||||
GoPayRedirect(GoPayRedirection),
|
||||
/// The wallet data for Gcash redirect
|
||||
GcashRedirect(GcashRedirection),
|
||||
/// The wallet data for Apple pay
|
||||
ApplePay(ApplePayWalletData),
|
||||
/// Wallet data for apple pay redirect flow
|
||||
@ -1048,6 +1050,9 @@ pub struct KakaoPayRedirection {}
|
||||
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
|
||||
pub struct GoPayRedirection {}
|
||||
|
||||
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
|
||||
pub struct GcashRedirection {}
|
||||
|
||||
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
|
||||
pub struct MobilePayRedirection {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user