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