com.binance4j.spot.dto.OrderTrade Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-spot Show documentation
Show all versions of binance4j-spot Show documentation
A client to communicate with the Binance API Spot endpoints
package com.binance4j.spot.dto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* The partial trade of an order.
*
* @param price Price.
* @param qty Quantity.
* @param commission Commission.
* @param commissionAsset Commission asset.
* @param tradeId Trade id.
*/
@ApiModel("The partial trade of an order.")
public record OrderTrade(@ApiModelProperty("Price.") String price, @ApiModelProperty("Quantity.") String qty,
@ApiModelProperty("Commission.") String commission, @ApiModelProperty("Commission asset.") String commissionAsset,
@ApiModelProperty("Trade id.") long tradeId) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy