feat(connector): [Zen] add apple pay redirect flow support for zen connector (#1383)

This commit is contained in:
Arjun Karthik
2023-06-08 02:25:28 +05:30
committed by GitHub
parent bce01ced11
commit b3b16fcf95
3 changed files with 408 additions and 119 deletions

View File

@ -804,6 +804,8 @@ pub enum WalletData {
AliPay(AliPayRedirection),
/// The wallet data for Apple pay
ApplePay(ApplePayWalletData),
/// Wallet data for apple pay redirect flow
ApplePayRedirect(Box<ApplePayRedirectData>),
/// The wallet data for Google pay
GooglePay(GooglePayWalletData),
MbWay(Box<MbWayRedirection>),
@ -831,6 +833,9 @@ pub struct GooglePayWalletData {
pub tokenization_data: GpayTokenizationData,
}
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
pub struct ApplePayRedirectData {}
#[derive(Eq, PartialEq, Clone, Debug, serde::Deserialize, serde::Serialize, ToSchema)]
pub struct WeChatPayRedirection {}