Skip to content

Commit

Permalink
Change collector account_id type
Browse files Browse the repository at this point in the history
  • Loading branch information
gdeandradero committed Nov 29, 2022
1 parent 7859f86 commit 0412170
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/MercadoPago/Resource/Payment/PaymentBankInfoCollector.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
namespace MercadoPago.Resource.Payment
using System.Numerics;

namespace MercadoPago.Resource.Payment
{
/// <summary>
/// Collector's bank info.
Expand All @@ -8,7 +10,7 @@ public class PaymentBankInfoCollector
/// <summary>
/// Account ID.
/// </summary>
public long? AccountId { get; set; }
public BigInteger? AccountId { get; set; }

/// <summary>
/// Account long name.
Expand Down

0 comments on commit 0412170

Please sign in to comment.