Skip to content

Commit

Permalink
Merge pull request #21 from iamport/feature/change-currency-type
Browse files Browse the repository at this point in the history
change currency data type
  • Loading branch information
BaekGeunYoung authored Apr 20, 2022
2 parents 9b466bc + 91954d7 commit c258b03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class AgainPaymentData {
private BigDecimal vat;

@SerializedName("currency")
private BigDecimal currency;
private String currency;

@SerializedName("name")
private String name;
Expand Down Expand Up @@ -131,7 +131,7 @@ public void setBrowser_ip(String browser_ip) {
this.browser_ip = browser_ip;
}

public void setCurrency(BigDecimal currency) {
public void setCurrency(String currency) {
this.currency = currency;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class OnetimePaymentData {
private String customer_uid;

@SerializedName("currency")
private BigDecimal currency;
private String currency;

@SerializedName("name")
private String name;
Expand Down Expand Up @@ -108,7 +108,7 @@ public void setCardQuota(int card_quota) {
this.card_quota = card_quota;
}

public void setCurrency(BigDecimal currency) {
public void setCurrency(String currency) {
this.currency = currency;
}

Expand Down

0 comments on commit c258b03

Please sign in to comment.