com.kucoin.sdk.websocket.event.MatchExcutionChangeEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.websocket.event;
import java.math.BigDecimal;
import lombok.Data;
/**
* Created by chenshiwei on 2019/1/19.
*/
@Data
public class MatchExcutionChangeEvent {
private String sequence;
private String symbol;
private String side;
private BigDecimal size;
private BigDecimal price;
private String takerOrderId;
private long time;
private String type;
private String markerOrderId;
private String tradeId;
}