Helius
2020-06-08 db3cab89b47378ee0482ad5183f4f542d48309b8
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
package com.xcong.excoin.utils.api.response;
public class Kline {
 
 
    private long id;
    private float amount;
    private int count;
    private float open;
    private float close;
    private float low;
    private float high;
    private float vol;
    public long getId() {
        return id;
    }
    public void setId(long id) {
        this.id = id;
    }
    public float getAmount() {
        return amount;
    }
    public void setAmount(float amount) {
        this.amount = amount;
    }
    public int getCount() {
        return count;
    }
    public void setCount(int count) {
        this.count = count;
    }
    public float getOpen() {
        return open;
    }
    public void setOpen(float open) {
        this.open = open;
    }
    public float getClose() {
        return close;
    }
    public void setClose(float close) {
        this.close = close;
    }
    public float getLow() {
        return low;
    }
    public void setLow(float low) {
        this.low = low;
    }
    public float getHigh() {
        return high;
    }
    public void setHigh(float high) {
        this.high = high;
    }
    public float getVol() {
        return vol;
    }
    public void setVol(float vol) {
        this.vol = vol;
    }
    @Override
    public String toString() {
        return "Kline [id=" + id + ", amount=" + amount + ", count=" + count + ", open=" + open + ", close=" + close
                + ", low=" + low + ", high=" + high + ", vol=" + vol + "]";
    }
 
    
}