fix: revert session flow for Apple Pay trustpay (#1393)

This commit is contained in:
Sangamesh Kulkarni
2023-06-08 22:15:21 +05:30
committed by GitHub
parent 7933e98c8c
commit 0ca69e6065
23 changed files with 115 additions and 541 deletions

View File

@ -159,9 +159,6 @@ pub enum PaymentAttemptUpdate {
error_code: Option<Option<String>>,
error_message: Option<Option<String>>,
},
SessionUpdate {
connector_transaction_id: Option<String>,
},
StatusUpdate {
status: storage_enums::AttemptStatus,
},
@ -393,12 +390,6 @@ impl From<PaymentAttemptUpdate> for PaymentAttemptUpdateInternal {
preprocessing_step_id,
..Default::default()
},
PaymentAttemptUpdate::SessionUpdate {
connector_transaction_id,
} => Self {
connector_transaction_id,
..Default::default()
},
}
}
}