feat(connector): [Fiserv] update connector_response_reference_id in transformers (#2489)

This commit is contained in:
Sahal Saad
2023-10-09 15:59:08 +08:00
committed by GitHub
parent 6d09bf7745
commit 4eb7003433

View File

@ -315,7 +315,9 @@ impl<F, T>
mandate_reference: None,
connector_metadata: None,
network_txn_id: None,
connector_response_reference_id: None,
connector_response_reference_id: Some(
gateway_resp.transaction_processing_details.order_id,
),
}),
..item.data
})
@ -350,7 +352,13 @@ impl<F, T> TryFrom<types::ResponseRouterData<F, FiservSyncResponse, T, types::Pa
mandate_reference: None,
connector_metadata: None,
network_txn_id: None,
connector_response_reference_id: None,
connector_response_reference_id: Some(
gateway_resp
.gateway_response
.transaction_processing_details
.order_id
.clone(),
),
}),
..item.data
})