All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oxerr.huobi.rest.dto.trade.CancelOrderResult Maven / Gradle / Ivy

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