org.knowm.xchange.huobi.dto.account.results.HuobiAccountResult 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
XChange implementation for the Huobi Exchange
The newest version!
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.HuobiAccount;
public class HuobiAccountResult extends HuobiResult {
public HuobiAccountResult(
@JsonProperty("status") String status,
@JsonProperty("data") HuobiAccount[] result,
@JsonProperty("err-code") String errCode,
@JsonProperty("err-msg") String errMsg) {
super(status, errCode, errMsg, result);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy