Releases: mercadopago/sdk-dotnet
Releases · mercadopago/sdk-dotnet
1.2.1
- Load method added on Payment class to fix IPN issue
- Fee types added
1.2.0
- Addition of MPRequestOptions to allow configure each request (configure access token, add headers, configure timeouts)
var customHeaders = new Dictionary<String, String>();
customHeaders.Add("x-test", "test");
var requestOptions = new MPRequestOptions
{
AccessToken = "YOUR_ACCESS_TOKEN",
Retries = 2,
Timeout = 10000,
CustomHeaders = customHeaders
};
var payment = new Payment();
...
payment.Save(requestOptions);
- Addition of DiscountCampaign class to allow find a valid discount
- Added the functionality of saving customer card using the card token
var card = new Card
{
CustomerId = "CUSTOMER_ID",
Token = "CARD_TOKEN"
};
card.Save();
- Change the type of StreetNumber property from string to int in Customer.Address
- Adjust Refund method in Payment
1.1.0
This release includes:
- Taxes information in Preference.
1.0.56
- Se agrega soporte a envío de detalle de IVA en Colombia.
- Ahora los metodos save y update son booleanos para identificar un proceso exitoso.
1.0.48
Se corrige el funcionamiento de uso de Marketplace AccessToken
Se corrige el tipo de datos para campos moneda en Payments y Preference de float e int a Decimal
1.0.47
Include support for processing_modes & binary_mode attributes
1.0.46
Se incluye el atributo ProcessingModes para soportar el modo Gateway en la clase Preference
1.0.45
Se corrige el bug que ocasionaba que las preferencias no registren la dirección de envío.
1.0.42
Se incluye el atributo MarketplaceAccessToken para poder setear un AccessToken en cada request en escenarios de Marketplace.
1.0.41
Merge branch 'master' of https://github.com/mercadopago/dx-dotnet