Skip to content

Commit

Permalink
Add transaction id and increment SDK version
Browse files Browse the repository at this point in the history
  • Loading branch information
gdeandradero committed Nov 30, 2023
1 parent 1d7b8b3 commit d830143
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/MercadoPago/MercadoPago.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<SignAssembly>True</SignAssembly>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFrameworks>net5.0;netstandard2.0;net461</TargetFrameworks>
<Version>2.3.4</Version>
<VersionPrefix>2.3.4</VersionPrefix>
<Version>2.3.5</Version>
<VersionPrefix>2.3.5</VersionPrefix>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
Expand Down
2 changes: 1 addition & 1 deletion src/MercadoPago/Resource/Payment/PaymentTransactionData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class PaymentTransactionData
public string QrCodeBase64 { get; set; }

/// <summary>
/// Transaction ID.
/// BACEN identifier for Pix.
/// </summary>
public string TransactionId { get; set; }

Expand Down
5 changes: 5 additions & 0 deletions src/MercadoPago/Resource/Payment/PaymentTransactionDetails.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,10 @@ public class PaymentTransactionDetails
/// is the reference to give to the cashier or to input into the ATM.
/// </summary>
public string PaymentMethodReferenceId { get; set; }

/// <summary>
/// BACEN identifier for Pix
/// </summary>
public string TransactionId { get; set; }
}
}

0 comments on commit d830143

Please sign in to comment.