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

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

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