com.binance4j.market.dto.Trade 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 an executed trade history item.
*
* @param id The trade id.
* @param price The trad price.
* @param qty The trade volume.
* @param quoteQty The trade opposite volume.
* @param time The trade execution in ms.
* @param isBuyerMaker Is the trade a buyer maker trade.
* @param isBestMatch Was the trade the best price match?
*/
public record Trade(long id, String price, String qty, String quoteQty, long time, boolean isBuyerMaker, boolean isBestMatch) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy