View Javadoc
1   package org.oxerr.huobi.websocket.dto;
2   
3   import com.google.gson.annotations.SerializedName;
4   
5   /**
6    * K Line periods.
7    */
8   public enum Period {
9   
10  	@SerializedName("1min")
11  	KLINE_1MIN,
12  
13  	@SerializedName("5min")
14  	KLINE_5MIN,
15  
16  	@SerializedName("15min")
17  	KLINE_15MIN,
18  
19  	@SerializedName("30min")
20  	KLINE_30MIN,
21  
22  	@SerializedName("60min")
23  	KLINE_60MIN,
24  
25  	@SerializedName("1day")
26  	KLINE_1DAY,
27  
28  	@SerializedName("1week")
29  	KLINE_1WEEK,
30  
31  	@SerializedName("1mon")
32  	KLINE_1MON,
33  
34  	@SerializedName("1year")
35  	KLINE_1YEAR,
36  
37  	@SerializedName("tl")
38  	KLINE_TIMELINE;
39  
40  }