fix(core): update amount_capturable in update trackers (#2142)

This commit is contained in:
Hrithikesh
2023-09-13 14:44:31 +05:30
committed by GitHub
parent 9d74a75ddb
commit bed8326597
5 changed files with 23 additions and 1 deletions

View File

@ -216,6 +216,7 @@ pub enum PaymentAttemptUpdate {
payment_token: Option<String>,
connector: Option<String>,
straight_through_algorithm: Option<serde_json::Value>,
amount_capturable: Option<i64>,
},
AuthenticationTypeUpdate {
authentication_type: storage_enums::AuthenticationType,
@ -236,6 +237,7 @@ pub enum PaymentAttemptUpdate {
straight_through_algorithm: Option<serde_json::Value>,
error_code: Option<Option<String>>,
error_message: Option<Option<String>>,
amount_capturable: Option<i64>,
},
RejectUpdate {
status: storage_enums::AttemptStatus,