(Map<String, Object> params)
| 148 | public CompletableFuture<MarginModes> fetchMarginModesAsync(String[] symbols, Map<String, Object> params) { return fetchMarginModesAsync(symbols == null ? null : java.util.Arrays.asList(symbols), params); } |
| 149 | |
| 150 | @SuppressWarnings("unchecked") |
| 151 | public Long fetchTime(Map<String, Object> params) { |
| 152 | Object res = Helpers.joinUnwrapped(super.fetchTime(params)); |
| 153 | return (res instanceof Number n) ? n.longValue() : null; |
| 154 | } |
| 155 | public Long fetchTime() { return fetchTime((Map<String, Object>) null); } |
| 156 | @SuppressWarnings("unchecked") |
| 157 | public CompletableFuture<Long> fetchTimeAsync(Map<String, Object> params) { |
no test coverage detected