zj
2025-10-17 bbc4713b23778aebc1eb3d46cb04d539179d883d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yami.trading.huobi.websocket.constant.enums;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 *  The aggregation depth type.
 */
@Getter
@AllArgsConstructor
public enum DepthSizeEnum {
 
  /**
   * step0,step1,step2,step3,step4,step5
   */
  SIZE_5(5),
  SIZE_10(10),
  SIZE_20(20),
  ;
 
  private final Integer size;
 
}