feat(router): add support for payment_type field in payment intent (#2448)

This commit is contained in:
ItsMeShashank
2023-10-05 16:30:47 +05:30
committed by GitHub
parent db7f9fa801
commit f116728d1c
16 changed files with 126 additions and 2 deletions

View File

@ -106,6 +106,7 @@ impl PaymentIntentInterface for MockDb {
profile_id: new.profile_id,
merchant_decision: new.merchant_decision,
payment_confirm_source: new.payment_confirm_source,
payment_type: new.payment_type,
};
payment_intents.push(payment_intent.clone());
Ok(payment_intent)