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

com.binance4j.market.dto.OrderBook Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
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