Skip to content

Commit

Permalink
Avoid convert to integer, undefined indentification number en MX scen…
Browse files Browse the repository at this point in the history
…arios
  • Loading branch information
joelibaceta committed Dec 4, 2018
1 parent 25c2f48 commit 7e0ba4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.mercadopago</groupId>
<artifactId>dx-java</artifactId>
<version>1.0.31</version>
<version>1.0.32</version>
<packaging>jar</packaging>

<name>Mercadopago SDK</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
*/
public class Identification {

private Long number = null;
private String number = null;
private String subtype = null;
private String type = null;


public Long getNumber() {
public String getNumber() {
return number;
}

public Identification setNumber(Long number) {
public Identification setNumber(String number) {
this.number = number;
return this;
}
Expand Down

0 comments on commit 7e0ba4f

Please sign in to comment.