
org.oxerr.huobi.rest.dto.trade.CancelOrderResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of huobi-client-rest Show documentation
Show all versions of huobi-client-rest Show documentation
Client for <a href="https://www.huobi.com">Huobi</a> RESTful API.
The newest version!
package org.oxerr.huobi.rest.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CancelOrderResult extends HuobiError {
private final String result;
public CancelOrderResult(
@JsonProperty("code") final int code,
@JsonProperty("msg") final String msg,
@JsonProperty("time") final long time,
@JsonProperty("result") final String result) {
super(code, msg, time);
this.result = result;
}
public String getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy