feat(payment_methods): Client secret implementation in payment method… (#4134)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Sarthak Soni
2024-04-19 17:32:06 +05:30
committed by GitHub
parent f6fccafb3d
commit 43307815e0
27 changed files with 548 additions and 60 deletions

View File

@ -90,7 +90,7 @@ impl ApiEventMetric for PaymentMethodResponse {
fn get_api_event_type(&self) -> Option<ApiEventsType> {
Some(ApiEventsType::PaymentMethod {
payment_method_id: self.payment_method_id.clone(),
payment_method: Some(self.payment_method),
payment_method: self.payment_method,
payment_method_type: self.payment_method_type,
})
}