Releases: mercadopago/sdk-java
Releases · mercadopago/sdk-java
2.1.7
this version adds:
- nextPaymentDate field to Preapproval model
2.1.6
this version adds:
- Data models for processing boletos with fees, fines and discount
- Fields for processing credit card payments with 3DS 2.0
2.1.5
We changed the field AccountId, which is normally used for Pix transactions. If your app makes use of this field in your integration, alter its type from long to BigInteger.
PaymentClient client = new PaymentClient();
Payment p = client.get(12345L);
// Collector accountId changed type from long to BigInteger
BigInteger collectorAccountId = p.getPointOfInteraction().getTransactionData().getBankInfo().getCollector().getAccountId();
// Collector accountId changed type from long to BigInteger
BigInteger payerAccountId = p.getPointOfInteraction().getTransactionData().getBankInfo().getPayer().getAccountId();
2.1.4
Fix way to set proxy.
2.1.3
this version refactors Serializer's Gson type adapter for OffsetDatetime to account for different ISO 8601 datetime formats during deserialization.