zyy
2026-03-15 35ececb0d9959e010f1ac160f20afd4dba27de57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.yami.trading.api.dto;
 
import lombok.Data;
 
@Data
public class TradeDetails {
    private String symbol;
    private String trade_unique_id;
    private int trade_volume;
    private int side;
    private double current;
    private double chg;
    private int level;
    private int trade_session;
    private String trade_type;
    private double percent;
    private long timestamp;
}