(Object order, Object... optionalArgs)
| 10944 | } |
| 10945 | |
| 10946 | public java.util.concurrent.CompletableFuture<Object> cancelUnifiedOrder(Object order, Object... optionalArgs) |
| 10947 | { |
| 10948 | |
| 10949 | return java.util.concurrent.CompletableFuture.supplyAsync(() -> { |
| 10950 | |
| 10951 | Object parameters = Helpers.getArg(optionalArgs, 0, new java.util.HashMap<String, Object>() {{}}); |
| 10952 | return this.cancelOrder(this.safeString(order, "id"), this.safeString(order, "symbol"), parameters); |
| 10953 | }); |
| 10954 | |
| 10955 | } |
| 10956 | |
| 10957 | public java.util.concurrent.CompletableFuture<Object> fetchOrders(Object... optionalArgs) |
| 10958 | { |
nothing calls this directly
no test coverage detected