org.knowm.xchange.huobi.dto.account.results.HuobiBalanceResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-huobi Show documentation
Show all versions of xchange-huobi Show documentation
Development fork. Not for general use.
package org.knowm.xchange.huobi.dto.account.results;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.huobi.dto.HuobiResult;
import org.knowm.xchange.huobi.dto.account.HuobiBalance;
public class HuobiBalanceResult extends HuobiResult {
public HuobiBalanceResult(
@JsonProperty("status") String status,
@JsonProperty("data") HuobiBalance result,
@JsonProperty("err-code") String errCode,
@JsonProperty("err-msg") String errMsg) {
super(status, errCode, errMsg, result);
}
}