org.knowm.xchange.huobi.dto.account.results.HuobiFeeRateResult 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.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.huobi.dto.HuobiResult;
import org.knowm.xchange.huobi.dto.account.HuobiFeeRate;
public class HuobiFeeRateResult extends HuobiResult {
@JsonCreator
public HuobiFeeRateResult(
@JsonProperty("status") String status,
@JsonProperty("data") HuobiFeeRate[] data,
@JsonProperty("err-code") String errCode,
@JsonProperty("err-msg") String errMsg) {
super(status, errCode, errMsg, data);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy