feat(core): add bulk tokenization flows (#7066)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Kashif
2025-03-07 18:20:18 +05:30
committed by GitHub
parent 586adea992
commit 2ff0d4f956
26 changed files with 2742 additions and 38 deletions

View File

@ -22,7 +22,7 @@ pub struct CardData {
pub card_number: CardNumber,
pub exp_month: Secret<String>,
pub exp_year: Secret<String>,
pub card_security_code: Secret<String>,
pub card_security_code: Option<Secret<String>>,
}
#[cfg(all(feature = "v2", feature = "payment_methods_v2"))]