feat(webhooks): adyen - consume and update connector's network_transaction_id in payment_methods (#6738)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Kashif
2024-12-05 17:23:44 +05:30
committed by GitHub
parent 4bfabdfa24
commit 871a36379d
7 changed files with 195 additions and 91 deletions

View File

@ -264,4 +264,15 @@ pub trait IncomingWebhook: ConnectorCommon + Sync {
> {
Ok(None)
}
/// fn get_network_txn_id
fn get_network_txn_id(
&self,
_request: &IncomingWebhookRequestDetails<'_>,
) -> CustomResult<
Option<hyperswitch_domain_models::router_flow_types::ConnectorNetworkTxnId>,
errors::ConnectorError,
> {
Ok(None)
}
}