Skip to content

Commit

Permalink
added subtype in POI request (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
vicorrea25 authored Aug 22, 2024
1 parent 8f0f0e1 commit 555ffba
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ already.
<dependency>
<groupId>com.mercadopago</groupId>
<artifactId>sdk-java</artifactId>
<version>2.1.27</version>
<version>2.1.28</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.27</version>
<version>2.1.28</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.27";
public static final String CURRENT_VERSION = "2.1.28";

public static final String PRODUCT_ID = "BC32A7VTRPP001U8NHJ0";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ public class PaymentPointOfInteractionRequest {

/** Type. */
private final String type;

//** Sub Type */
private final String subType;

/** Transaction data. */
private final PaymentTransactionDataRequest transactionData;

Expand Down

0 comments on commit 555ffba

Please sign in to comment.