Skip to content

Commit

Permalink
Merge pull request #270 from mercadopago/feature/add-transaction-id
Browse files Browse the repository at this point in the history
Add transaction id
  • Loading branch information
gdeandradero authored Nov 28, 2023
2 parents e9b49e8 + 6d6d3d0 commit 1b7f559
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ already.
<dependency>
<groupId>com.mercadopago</groupId>
<artifactId>sdk-java</artifactId>
<version>2.1.16</version>
<version>2.1.17</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.mercadopago</groupId>
<artifactId>sdk-java</artifactId>
<version>2.1.16</version>
<version>2.1.17</version>
<packaging>jar</packaging>

<name>Mercadopago SDK</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mercadopago/MercadoPagoConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/** Mercado Pago configuration class. */
public class MercadoPagoConfig {

public static final String CURRENT_VERSION = "2.1.16";
public static final String CURRENT_VERSION = "2.1.17";

public static final String PRODUCT_ID = "BC32A7VTRPP001U8NHJ0";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class PaymentTransactionData {
/** QR code image in Base 64. */
private String qrCodeBase64;

/** Transaction ID. */
/** BACEN identifier for Pix. */
private String transactionId;

/** Bank transfer ID. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,7 @@ public class PaymentTransactionDetails {

/** Acquirer Reference. */
private String acquirerReference;

/** BACEN identifier for Pix. */
private String transactionId;
}

0 comments on commit 1b7f559

Please sign in to comment.