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
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
package com.xcong.excoin.utils.api.response;
 
public class MatchresultsOrdersDetail {
    /**
     * id : 29553
     * order-id : 59378
     * match-id : 59335
     * symbol : ethusdt
     * type : buy-limit
     * source : api
     * price : 100.1000000000
     * filled-amount : 9.1155000000
     * filled-fees : 0.0182310000
     * created-at : 1494901400435
     */
 
    private long id;
    @com.google.gson.annotations.SerializedName("order-id")
    private long orderid;
    @com.google.gson.annotations.SerializedName("match-id")
    private long matchid;
    private String symbol;
    private String type;
    private String source;
    private String price;
    @com.google.gson.annotations.SerializedName("filled-amount")
    private String filledamount;
    @com.google.gson.annotations.SerializedName("filled-fees")
    private String filledfees;
    @com.google.gson.annotations.SerializedName("created-at")
    private long createdat;
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public long getOrderid() {
        return orderid;
    }
 
    public void setOrderid(long orderid) {
        this.orderid = orderid;
    }
 
    public long getMatchid() {
        return matchid;
    }
 
    public void setMatchid(long matchid) {
        this.matchid = matchid;
    }
 
    public String getSymbol() {
        return symbol;
    }
 
    public void setSymbol(String symbol) {
        this.symbol = symbol;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getSource() {
        return source;
    }
 
    public void setSource(String source) {
        this.source = source;
    }
 
    public String getPrice() {
        return price;
    }
 
    public void setPrice(String price) {
        this.price = price;
    }
 
    public String getFilledamount() {
        return filledamount;
    }
 
    public void setFilledamount(String filledamount) {
        this.filledamount = filledamount;
    }
 
    public String getFilledfees() {
        return filledfees;
    }
 
    public void setFilledfees(String filledfees) {
        this.filledfees = filledfees;
    }
 
    public long getCreatedat() {
        return createdat;
    }
 
    public void setCreatedat(long createdat) {
        this.createdat = createdat;
    }
}