All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kucoin.futures.core.model.Level3Message Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019 Mek Global Limited
 */
package com.kucoin.futures.core.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;

import java.math.BigDecimal;

/**
 * @author chenshiwei
 * @since 2019/10/15
 */
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class Level3Message {

    private String symbol;

    private Long sequence;

    private String side;

    private Long orderTime;

    private Long size;

    private String orderId;

    private BigDecimal price;

    private String type;

    private String clientOid;

    private Long ts;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy