feat(core): add columns unified error code and error message in refund table (#6933)

This commit is contained in:
Debarati Ghatak
2025-01-07 13:01:17 +05:30
committed by GitHub
parent 6b1e5b0aec
commit c4d36b506e
30 changed files with 237 additions and 166 deletions

View File

@ -188,6 +188,10 @@ pub struct RefundResponse {
pub error_message: Option<String>,
/// The code for the error
pub error_code: Option<String>,
/// Error code unified across the connectors is received here if there was an error while calling connector
pub unified_code: Option<String>,
/// Error message unified across the connectors is received here if there was an error while calling connector
pub unified_message: Option<String>,
/// The timestamp at which refund is created
#[serde(with = "common_utils::custom_serde::iso8601::option")]
pub created_at: Option<PrimitiveDateTime>,