mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 17:47:54 +08:00
feat: applepay through trustpay (#1422)
Co-authored-by: dracarys18 <karthikey.hegde@juspay.in>
This commit is contained in:
committed by
GitHub
parent
641995371d
commit
8032e0290b
@ -657,6 +657,9 @@ pub enum StripeNextAction {
|
||||
DisplayBankTransferInformation {
|
||||
bank_transfer_steps_and_charges_details: payments::BankTransferNextStepsData,
|
||||
},
|
||||
ThirdPartySdkSessionToken {
|
||||
session_token: Option<payments::SessionToken>,
|
||||
},
|
||||
}
|
||||
|
||||
pub(crate) fn into_stripe_next_action(
|
||||
@ -677,5 +680,8 @@ pub(crate) fn into_stripe_next_action(
|
||||
} => StripeNextAction::DisplayBankTransferInformation {
|
||||
bank_transfer_steps_and_charges_details,
|
||||
},
|
||||
payments::NextActionData::ThirdPartySdkSessionToken { session_token } => {
|
||||
StripeNextAction::ThirdPartySdkSessionToken { session_token }
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@ -317,6 +317,9 @@ pub enum StripeNextAction {
|
||||
DisplayBankTransferInformation {
|
||||
bank_transfer_steps_and_charges_details: payments::BankTransferNextStepsData,
|
||||
},
|
||||
ThirdPartySdkSessionToken {
|
||||
session_token: Option<payments::SessionToken>,
|
||||
},
|
||||
}
|
||||
|
||||
pub(crate) fn into_stripe_next_action(
|
||||
@ -337,6 +340,9 @@ pub(crate) fn into_stripe_next_action(
|
||||
} => StripeNextAction::DisplayBankTransferInformation {
|
||||
bank_transfer_steps_and_charges_details,
|
||||
},
|
||||
payments::NextActionData::ThirdPartySdkSessionToken { session_token } => {
|
||||
StripeNextAction::ThirdPartySdkSessionToken { session_token }
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user