fix(analytics): Resolve issues for payment-intent v2 analytics (#5283)

This commit is contained in:
Sandeep Kumar
2024-07-11 18:08:08 +05:30
committed by GitHub
parent 7c408aff1e
commit bcb3450445

View File

@ -10,6 +10,7 @@ use crate::enums::{Currency, IntentStatus};
pub struct PaymentIntentFilters {
#[serde(default)]
pub status: Vec<IntentStatus>,
#[serde(default)]
pub currency: Vec<Currency>,
}