mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 21:07:58 +08:00
Co-authored-by: Kashif <mohammed.kashif@juspay.in> Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
22 lines
605 B
Rust
22 lines
605 B
Rust
use common_utils::events::{ApiEventMetric, ApiEventsType};
|
|
|
|
use crate::recon::{ReconStatusResponse, ReconTokenResponse, ReconUpdateMerchantRequest};
|
|
|
|
impl ApiEventMetric for ReconUpdateMerchantRequest {
|
|
fn get_api_event_type(&self) -> Option<ApiEventsType> {
|
|
Some(ApiEventsType::Recon)
|
|
}
|
|
}
|
|
|
|
impl ApiEventMetric for ReconTokenResponse {
|
|
fn get_api_event_type(&self) -> Option<ApiEventsType> {
|
|
Some(ApiEventsType::Recon)
|
|
}
|
|
}
|
|
|
|
impl ApiEventMetric for ReconStatusResponse {
|
|
fn get_api_event_type(&self) -> Option<ApiEventsType> {
|
|
Some(ApiEventsType::Recon)
|
|
}
|
|
}
|