org.knowm.xchange.kucoin.dto.response.OrderBook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kucoin Show documentation
Show all versions of xchange-kucoin Show documentation
XChange implementation for the Kucoin Exchange
/** Copyright 2019 Mek Global Limited. */
package org.knowm.xchange.kucoin.dto.response;
import java.util.List;
import lombok.Data;
/** Created by chenshiwei on 2019/1/19. */
@Data
public class OrderBook {
/** [price, size] for aggregated, [orderId, price, size] for atomic */
private List> asks;
/** [price, size] for aggregated, [orderId, price, size] for atomic */
private List> bids;
}