org.knowm.xchange.huobi.dto.trade.results.HuobiCancelOrderResult 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.trade.results;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.huobi.dto.HuobiResult;
public class HuobiCancelOrderResult extends HuobiResult {
public HuobiCancelOrderResult(
@JsonProperty("status") String status,
@JsonProperty("data") String result,
@JsonProperty("err-code") String errCode,
@JsonProperty("err-msg") String errMsg) {
super(status, errCode, errMsg, result);
}
}