feat(router): add more payment methods to vault (#333)

This commit is contained in:
ItsMeShashank
2023-01-14 20:48:45 +05:30
committed by GitHub
parent d64e5f2df3
commit 4e00b92dc1
12 changed files with 654 additions and 400 deletions

View File

@ -289,3 +289,14 @@ pub struct TokenizedCardValue2 {
pub customer_id: Option<String>,
pub payment_method_id: Option<String>,
}
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct TokenizedWalletValue1 {
pub issuer: String,
pub token: Option<String>,
}
#[derive(Debug, serde::Serialize, serde::Deserialize)]
pub struct TokenizedWalletValue2 {
pub customer_id: Option<String>,
}