Skip to content

2.2.3

Compare
Choose a tag to compare
@gdeandradero gdeandradero released this 05 Dec 22:20
· 72 commits to master since this release
d208286

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;