fix(samsung_pay): populate payment_method_data in the payment response (#7095)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Shankar Singh C
2025-02-04 01:38:08 +05:30
committed by GitHub
parent ae39374c6b
commit 04a5e38236
10 changed files with 74 additions and 17 deletions

View File

@ -219,5 +219,5 @@ pub struct WalletAdditionalDataForCard {
pub card_network: String,
/// The type of payment method
#[serde(rename = "type")]
pub card_type: String,
pub card_type: Option<String>,
}