@RequiredArgsConstructor
public class Capture {
private final StripeTransactionService stripeTransactionService;
public void performCapture() {
CurrencyUnit currency = Monetary.getCurrency(currencyCode);
MonetaryAmount transactionTotal = Monetary.getDefaultAmountFactory().setCurrency(currency).setNumber(amount).create();
PaymentRequest paymentRequest = new PaymentRequest()
.transactionReferenceId(transactionReferenceId)
.transactionTotal(transactionTotal)
.additionalField("PAYMENT_INTENT_ID", paymentIntentIdToCapture); // The PaymentIntent Id from the Authorize transaction.
PaymentResponse paymentResponse = stripeTransactionService.capture(paymentRequest);
paymentResponse.isSuccessful();
paymentResponse.getGatewayResponseCode(); // The Stripe response code
paymentResponse.getFailureType(); // Failure type in case the transaction was not successful.
paymentResponse.getRawResponse(); // Stripe raw response stored as a JSON object.
paymentResponse.getResponseMap().get("TRANSACTION_ID"); // The Stripe transaction ID, which will be used for subsequent transaction requests.
paymentResponse.getResponseMap().get("PAYMENT_INTENT_ID"); // The Stripe Payment Intent ID.
paymentResponse.getResponseMap().get("ERROR_CODE"); // The Stripe error response code.
paymentResponse.getResponseMap().get("ERROR_MESSAGE"); // The Stripe error message.
}
}