1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.yami.trading.huobi.websocket.client.req.account;
|
| import com.yami.trading.huobi.websocket.constant.enums.AccountTypeEnum;
| import lombok.*;
|
| @Data
| @Builder
| @AllArgsConstructor
| @NoArgsConstructor
| @ToString
| public class AccountValuationRequest {
| AccountTypeEnum accountType;
| String valuationCurrency;
| }
|
|