1 package org.oxerr.huobi.rest.domain;
2
3 public class LoginResult extends AbstractObject {
4
5 private static final long serialVersionUID = 2014010201L;
6
7 private String level;
8
9 private Funds funds;
10
11 public String getLevel() {
12 return level;
13 }
14
15 public void setLevel(String level) {
16 this.level = level;
17 }
18
19 public Funds getFunds() {
20 return funds;
21 }
22
23 public void setFunds(Funds funds) {
24 this.funds = funds;
25 }
26 }