We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 418715b commit a9b5dc9Copy full SHA for a9b5dc9
crates/router/src/connector/bambora/transformers.rs
@@ -214,7 +214,7 @@ impl<F, T>
214
mandate_reference: None,
215
connector_metadata: None,
216
network_txn_id: None,
217
- connector_response_reference_id: None,
+ connector_response_reference_id: Some(pg_response.order_number.to_string()),
218
}),
219
..item.data
220
@@ -238,7 +238,9 @@ impl<F, T>
238
.change_context(errors::ConnectorError::ResponseHandlingFailed)?,
239
),
240
241
+ connector_response_reference_id: Some(
242
+ item.data.connector_request_reference_id.to_string(),
243
+ ),
244
245
246
})
0 commit comments