Helius
2020-05-29 23c59ce9c773022e4354ddac13cd5c722f4efb0f
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
package com.xcong.excoin.utils.api.response;
 
public class BalanceBean {
    /**
     * currency : usdt
     * type : trade
     * balance : 500009195917.4362872650
     */
 
    private String currency;
    private String type;
    private String balance;
 
    public String getCurrency() {
        return currency;
    }
 
    public void setCurrency(String currency) {
        this.currency = currency;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getBalance() {
        return balance;
    }
 
    public void setBalance(String balance) {
        this.balance = balance;
    }
}