Helius
2020-05-27 2dd3a086f2edeb9f364935c3fb98f18c2eea2fa8
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
package com.xcong.excoin.utils.api.response;
 
public class HistoryTrade {
    /**
     * id : 17592256642623
     * amount : 0.04
     * price : 1997
     * direction : buy
     * ts : 1502448920106
     */
 
    private long id;
    private double amount;
    private int price;
    private String direction;
    private long ts;
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public double getAmount() {
        return amount;
    }
 
    public void setAmount(double amount) {
        this.amount = amount;
    }
 
    public int getPrice() {
        return price;
    }
 
    public void setPrice(int price) {
        this.price = price;
    }
 
    public String getDirection() {
        return direction;
    }
 
    public void setDirection(String direction) {
        this.direction = direction;
    }
 
    public long getTs() {
        return ts;
    }
 
    public void setTs(long ts) {
        this.ts = ts;
    }
}