Skip to content

Commit

Permalink
Change the order it type to long in HistoricalOrdersRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
macomfan committed Apr 17, 2019
1 parent d0271ca commit 74a7d19
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public HistoricalOrdersRequest(String symbol, OrderState state) {
* @param size The size of orders. (optional, can be null)
*/
public HistoricalOrdersRequest(String symbol, OrderState state,
OrderType type, Date startDate, Date endDate, Integer startId, Integer size) {
OrderType type, Date startDate, Date endDate, Long startId, Integer size) {
this.symbol = symbol;
this.state = state;
this.type = type;
Expand All @@ -47,7 +47,7 @@ public HistoricalOrdersRequest(String symbol, OrderState state,
private OrderType type = null;
private Date startDate = null;
private Date endDate = null;
private Integer startId = null;
private Long startId = null;
private Integer size = null;

public String getSymbol() {
Expand All @@ -70,7 +70,7 @@ public Date getEndDate() {
return endDate;
}

public Integer getStartId() {
public Long getStartId() {
return startId;
}

Expand Down

0 comments on commit 74a7d19

Please sign in to comment.