Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

add status and executedQty to CancelOrderResponse #207

Merged
merged 2 commits into from
May 21, 2019
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public class CancelOrderResponse {

private String clientOrderId;

private String status;
private String executedQty;

public String getSymbol() {
return symbol;
}
Expand All @@ -38,10 +41,16 @@ public CancelOrderResponse setOrigClientOrderId(String origClientOrderId) {
return this;
}

public String getStatus() {
return status;
}
public String getExecutedQty() {
return executedQty;
}

public String getOrderId() {
return orderId;
}

public CancelOrderResponse setOrderId(String orderId) {
this.orderId = orderId;
return this;
Expand Down