Skip to content

Commit 72e5705

Browse files
authored
Merge pull request #109 from mercadopago/MPSDK-63
Alteração sponsorId para Integer
2 parents b3ba278 + 30a707b commit 72e5705

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/mercadopago/resources/Preference.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public enum AutoReturn {
6060
@Size(max=256) private String marketplace = null;
6161
private Float marketplaceFee = null;
6262
private DifferentialPricing differentialPricing = null;
63-
private String sponsorId = null;
63+
private Integer sponsorId = null;
6464
public enum ProcessingMode {
6565
aggregator,
6666
gateway
@@ -246,11 +246,11 @@ public Preference setDifferentialPricing(DifferentialPricing differentialPricing
246246
return this;
247247
}
248248

249-
public String getSponsorId() {
249+
public Integer getSponsorId() {
250250
return sponsorId;
251251
}
252252

253-
public void setSponsorId(String sponsorId) {
253+
public void setSponsorId(Integer sponsorId) {
254254
this.sponsorId = sponsorId;
255255
}
256256

0 commit comments

Comments
 (0)