mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 17:19:15 +08:00
feat(connector): [Adyen] implement Touch n Go for Adyen (#1588)
Co-authored-by: Sangamesh Kulkarni <59434228+Sangamesh26@users.noreply.github.com> Co-authored-by: Arjun Karthik <m.arjunkarthik@gmail.com>
This commit is contained in:
@ -1000,6 +1000,8 @@ pub enum WalletData {
|
||||
TwintRedirect {},
|
||||
/// Wallet data for Vipps Redirection
|
||||
VippsRedirect {},
|
||||
/// The wallet data for Touch n Go Redirection
|
||||
TouchNGoRedirect(Box<TouchNGoRedirection>),
|
||||
/// The wallet data for WeChat Pay Redirection
|
||||
WeChatPayRedirect(Box<WeChatPayRedirection>),
|
||||
/// The wallet data for WeChat Pay
|
||||
@ -1100,6 +1102,9 @@ pub struct PayPalWalletData {
|
||||
pub token: String,
|
||||
}
|
||||
|
||||
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
|
||||
pub struct TouchNGoRedirection {}
|
||||
|
||||
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
|
||||
pub struct GpayTokenizationData {
|
||||
/// The type of the token
|
||||
|
||||
Reference in New Issue
Block a user