com.binance4j.market.dto.BookTicker 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;
/**
* Represents the best price/quantity on the order book for a given symbol.
*
* @param symbol Ticker symbol.
* @param bidPrice Bid price.
* @param bidQty Bid quantity.
* @param askPrice Ask price.
* @param askQty Ask quantity.
*/
public record BookTicker(String symbol, String bidPrice, String bidQty, String askPrice, String askQty) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy