feat(apple_pay): add support for pre decrypted apple pay token (#2056)

Co-authored-by: Sangamesh <sangamesh.kulkarni@juspay.in>
This commit is contained in:
Shankar Singh C
2023-09-07 22:49:10 +05:30
committed by GitHub
parent 81c6480bdf
commit 75ee632782
34 changed files with 1174 additions and 227 deletions

View File

@ -497,7 +497,9 @@ pub trait ConnectorActions: Connector {
access_token: info.clone().and_then(|a| a.access_token),
session_token: None,
reference_id: None,
payment_method_token: info.clone().and_then(|a| a.payment_method_token),
payment_method_token: info
.clone()
.and_then(|a| a.payment_method_token.map(types::PaymentMethodToken::Token)),
connector_customer: info.clone().and_then(|a| a.connector_customer),
recurring_mandate_payment_data: None,