Releases: mercadopago/sdk-dotnet
2.3.2
this version adds address and phone fields to PaymentPayerRequest, required for PSE payments.
2.3.1
Update PaymentThreeDSInfo's mapping of json property three_ds_info
2.3.0
Added support for the Invoices API.
2.2.3
SDK Dotnet V2 - Change in field AccountId
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
.
var client = new PaymentClient();
Payment p = await client.GetAsync(12345);
// AccountId was long and is now BigInteger
var collectorAccountId = p.PointOfInteraction.TransactionData.BankInfo.Collector.AccountId;
// AccountId was long and is now BigInteger
var payerAccountId = p.PointOfInteraction.TransactionData.BankInfo.Payer.AccountId;
2.2.2
Added the DefaultCard property in the CustomerRequest class so that it is possible to define the customer's default card.
Added the TicketUrl property in the TransactionData class to return the URL that accesses the rendered ticket with instructions for making the payment. This property is used only in the PIX payment method.
2.2.1
2.2.0
2.1.0
- Add idempotency in refund
1.10.2
Fix empty list serialization problem in taxes.
2.0.0
A brand new version of the SDK that has the following features:
- Support to .Net Core 2.0+, .Net 5.0 and .Net Framework 4.6.1+
- Support to async methods
- Per request configuration
- User-friendly error handling