com.binance4j.market.dto.OrderBook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-market Show documentation
Show all versions of binance4j-market Show documentation
Connector for the Market endpoints of the Binance API
package com.binance4j.market.dto;
import java.util.List;
import com.binance4j.core.dto.OrderBookEntry;
/**
* The market depth
*
* @param lastUpdateId Last update id of this order book.
* @param bids List of bids (price/qty).
* @param asks List of asks (price/qty).
*/
public record OrderBook(long lastUpdateId, List bids, List asks) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy