1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| package project.data.websocket.model.market;
|
| public class MarketDepthEvent {
|
| private String ch;
|
| private Long ts;
|
| private MarketDepth depth;
|
| public String getCh() {
| return ch;
| }
|
| public void setCh(String ch) {
| this.ch = ch;
| }
|
| public Long getTs() {
| return ts;
| }
|
| public void setTs(Long ts) {
| this.ts = ts;
| }
|
| public MarketDepth getDepth() {
| return depth;
| }
|
| public void setDepth(MarketDepth depth) {
| this.depth = depth;
| }
|
| }
|
|