Skip to content
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
15 changes: 12 additions & 3 deletions model/src/main/java/com/coinbase/exchange/model/Fill.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
* Created by irufus on 2/18/15.
*/
public class Fill {
private Integer trade_id;
private String trade_id;
private String product_id;
private BigDecimal price;
private BigDecimal size;
private String order_id;
private String created_at;
Expand Down Expand Up @@ -63,6 +64,14 @@ public String getOrder_id() {
public void setOrder_id(String order_id) {
this.order_id = order_id;
}

public BigDecimal getPrice() {
return price;
}

public void setPrice(BigDecimal price) {
this.price = price;
}

public BigDecimal getSize() {
return size;
Expand All @@ -80,11 +89,11 @@ public void setProduct_id(String product_id) {
this.product_id = product_id;
}

public Integer getTrade_id() {
public String getTrade_id() {
return trade_id;
}

public void setTrade_id(Integer trade_id) {
public void setTrade_id(String trade_id) {
this.trade_id = trade_id;
}
}