mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
feat(router): add payments manual-update api (#5045)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
2e1167acbc
commit
ed021c1d99
@ -1748,6 +1748,23 @@ impl DataModelExt for PaymentAttemptUpdate {
|
||||
authentication_id,
|
||||
updated_by,
|
||||
},
|
||||
Self::ManualUpdate {
|
||||
status,
|
||||
error_code,
|
||||
error_message,
|
||||
error_reason,
|
||||
updated_by,
|
||||
unified_code,
|
||||
unified_message,
|
||||
} => DieselPaymentAttemptUpdate::ManualUpdate {
|
||||
status,
|
||||
error_code,
|
||||
error_message,
|
||||
error_reason,
|
||||
updated_by,
|
||||
unified_code,
|
||||
unified_message,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
@ -2079,6 +2096,23 @@ impl DataModelExt for PaymentAttemptUpdate {
|
||||
authentication_id,
|
||||
updated_by,
|
||||
},
|
||||
DieselPaymentAttemptUpdate::ManualUpdate {
|
||||
status,
|
||||
error_code,
|
||||
error_message,
|
||||
error_reason,
|
||||
updated_by,
|
||||
unified_code,
|
||||
unified_message,
|
||||
} => Self::ManualUpdate {
|
||||
status,
|
||||
error_code,
|
||||
error_message,
|
||||
error_reason,
|
||||
updated_by,
|
||||
unified_code,
|
||||
unified_message,
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user