com.binance4j.mining.dto.HashrateResaleDetail 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;
/**
* @param poolUsername Transfer out of sub-account.
* @param toPoolUsername Transfer into subaccount.
* @param algoName Transfer algorithm.
* @param hashRate Transferred Hashrate quantity.
* @param day Transfer date.
* @param amount Transferred income.
* @param coinName Coin Name.
*/
public record HashrateResaleDetail(String poolUsername, String toPoolUsername, String algoName, long hashRate, long day, String amount, String coinName) {
}