com.binance4j.pay.dto.TradeHistory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-pay Show documentation
Show all versions of binance4j-pay Show documentation
Connector for the pay endpoints of the Binance API
package com.binance4j.pay.dto;
import java.util.List;
/**
* A pay trade history.
*
* @param code Response code.
* @param message Response message.
* @param data The trades.
* @param success Resposne success.
*/
public record TradeHistory(String code, String message, List data, boolean success) {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy