feat(core): Add amount_capturable field to manual update api (#10013)

This commit is contained in:
awasthi21
2025-10-29 12:37:43 +05:30
committed by GitHub
parent a981319633
commit 34cd79df7c
4 changed files with 27 additions and 2 deletions

View File

@ -8556,6 +8556,8 @@ pub struct PaymentsManualUpdateRequest {
pub error_reason: Option<String>,
/// A unique identifier for a payment provided by the connector
pub connector_transaction_id: Option<String>,
/// The amount that can be captured on the payment.
pub amount_capturable: Option<MinorUnit>,
}
#[derive(Debug, serde::Serialize, serde::Deserialize, Clone, ToSchema)]
@ -8577,6 +8579,8 @@ pub struct PaymentsManualUpdateResponse {
pub error_reason: Option<String>,
/// A unique identifier for a payment provided by the connector
pub connector_transaction_id: Option<String>,
/// The amount that can be captured on the payment.
pub amount_capturable: Option<MinorUnit>,
}
#[derive(Debug, serde::Serialize, serde::Deserialize, Clone, ToSchema)]