org.knowm.xchange.okcoin.dto.trade.OkCoinFuturesOrderResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-okcoin Show documentation
Show all versions of xchange-okcoin Show documentation
XChange implementation for OKCoin
package org.knowm.xchange.okcoin.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
public class OkCoinFuturesOrderResult extends OkCoinErrorResult {
private final OkCoinFuturesOrder[] orders;
public OkCoinFuturesOrderResult(
@JsonProperty("result") final boolean result,
@JsonProperty("error_code") final int errorCode,
@JsonProperty("orders") final OkCoinFuturesOrder[] orders) {
super(result, errorCode);
this.orders = orders;
}
public OkCoinFuturesOrder[] getOrders() {
return orders;
}
}