Helius
2020-05-31 d8419ef8d67e6ee186a899c41d77a036b14bc49d
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package com.xcong.excoin.utils.api.response;
 
import java.util.List;
 
 
public class Merged {
 
    /**
     * id : 1499225271
     * ts : 1499225271000
     * close : 1885
     * open : 1960
     * high : 1985
     * low : 1856
     * amount : 81486.2926
     * count : 42122
     * vol : 1.57052744857082E8
     * ask : [1885,21.8804]
     * bid : [1884,1.6702]
     */
 
    private long id;
    private long ts;
    private int close;
    private int open;
    private int high;
    private int low;
    private double amount;
    private int count;
    private double vol;
    private List<Integer> ask;
    private List<Integer> bid;
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public long getTs() {
        return ts;
    }
 
    public void setTs(long ts) {
        this.ts = ts;
    }
 
    public int getClose() {
        return close;
    }
 
    public void setClose(int close) {
        this.close = close;
    }
 
    public int getOpen() {
        return open;
    }
 
    public void setOpen(int open) {
        this.open = open;
    }
 
    public int getHigh() {
        return high;
    }
 
    public void setHigh(int high) {
        this.high = high;
    }
 
    public int getLow() {
        return low;
    }
 
    public void setLow(int low) {
        this.low = low;
    }
 
    public double getAmount() {
        return amount;
    }
 
    public void setAmount(double amount) {
        this.amount = amount;
    }
 
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public double getVol() {
        return vol;
    }
 
    public void setVol(double vol) {
        this.vol = vol;
    }
 
    public List<Integer> getAsk() {
        return ask;
    }
 
    public void setAsk(List<Integer> ask) {
        this.ask = ask;
    }
 
    public List<Integer> getBid() {
        return bid;
    }
 
    public void setBid(List<Integer> bid) {
        this.bid = bid;
    }
}