Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change to BigDecimal #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions model/src/main/java/com/coinbase/exchange/model/Product.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Product {
private Boolean margin_enabled;
private String status_message;
private BigDecimal min_market_funds;
private Integer max_market_funds;
private BigDecimal max_market_funds;
private Boolean post_only;
private Boolean limit_only;
private Boolean cancel_only;
Expand Down Expand Up @@ -143,11 +143,11 @@ public void setMin_market_funds(BigDecimal min_market_funds) {
this.min_market_funds = min_market_funds;
}

public Integer getMax_market_funds() {
public BigDecimal getMax_market_funds() {
return max_market_funds;
}

public void setMax_market_funds(Integer max_market_funds) {
public void setMax_market_funds(BigDecimal max_market_funds) {
this.max_market_funds = max_market_funds;
}

Expand Down