com.binance4j.mining.dto.HashrateResaleDetailData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-mining Show documentation
Show all versions of binance4j-mining Show documentation
Connector for the mining endpoints of the Binance API
package com.binance4j.mining.dto;
import java.util.List;
/**
* Hashrate detail data.
*
* @param profitTransferDetails Details.
* @param totalNum Total amount.
* @param pageSize Rows per page.
*/
public record HashrateResaleDetailData(List profitTransferDetails, long totalNum, long pageSize) {
}