com.binance4j.mining.dto.MinerDetails 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;
/**
* Miner details.
*
* @param workerName Mining Account name.
* @param type Type of hourly hashrate.
* @param hashrateDatas Hashrate datas
*/
public record MinerDetails(String workerName, String type, List hashrateDatas) {
}