com.binance4j.vision.param.TradeParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-vision Show documentation
Show all versions of binance4j-vision Show documentation
Connector for the public data endpoints of the Binance API
The newest version!
package com.binance4j.vision.param;
import java.util.List;
import com.binance4j.core.exception.ApiException;
import com.binance4j.vision.dto.VisionTrade;
import okhttp3.ResponseBody;
import retrofit2.Call;
/** The trade request executor */
public class TradeParams extends VisionParams {
/**
* @param call API call.
*/
public TradeParams(Call call) {
super(call);
}
protected List csvToObject(List> input) throws ApiException {
return csvToObject(VisionTrade.class, input);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy