1 package org.oxerr.huobi.websocket.dto;
2
3 import java.math.BigDecimal;
4
5 public interface Depth {
6
7 String getSymbolId();
8 long getTime();
9 long getVersion();
10
11 BigDecimal[] getBidPrice();
12 BigDecimal[] getBidAmount();
13
14 BigDecimal[] getAskPrice();
15 BigDecimal[] getAskAmount();
16
17 void merge(DepthDiff diff);
18
19 }