feat: add card cvc and payment token handling (#116)

This commit is contained in:
Manoj Ghorela
2022-12-13 16:36:57 +05:30
committed by GitHub
parent 6bf9904867
commit 695cba3dd8
21 changed files with 107 additions and 37 deletions

View File

@ -18,6 +18,7 @@ pub struct LockerMockUp {
pub nickname: Option<String>,
pub customer_id: Option<String>,
pub duplicate: Option<bool>,
pub card_cvc: Option<String>,
}
#[derive(Clone, Debug, Default, Insertable, router_derive::DebugAsDisplay)]
@ -31,4 +32,5 @@ pub struct LockerMockUpNew {
pub card_number: String,
pub card_exp_year: String,
pub card_exp_month: String,
pub card_cvc: Option<String>,
}