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

Commit e038355

Browse files
authored
Merge pull request #207 from mdvx/master
Add status and executedQty to CancelOrderResponse
2 parents 96bbbd1 + 0d47038 commit e038355

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

src/main/java/com/binance/api/client/domain/account/request/CancelOrderResponse.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public class CancelOrderResponse {
2020

2121
private String clientOrderId;
2222

23+
private String status;
24+
private String executedQty;
25+
2326
public String getSymbol() {
2427
return symbol;
2528
}
@@ -38,10 +41,16 @@ public CancelOrderResponse setOrigClientOrderId(String origClientOrderId) {
3841
return this;
3942
}
4043

44+
public String getStatus() {
45+
return status;
46+
}
47+
public String getExecutedQty() {
48+
return executedQty;
49+
}
50+
4151
public String getOrderId() {
4252
return orderId;
4353
}
44-
4554
public CancelOrderResponse setOrderId(String orderId) {
4655
this.orderId = orderId;
4756
return this;

0 commit comments

Comments
 (0)