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

org.knowm.xchange.okcoin.dto.trade.OkCoinOrderResult Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package org.knowm.xchange.okcoin.dto.trade;

import com.fasterxml.jackson.annotation.JsonProperty;

public class OkCoinOrderResult extends OkCoinErrorResult {

  private final OkCoinOrder[] orders;

  public OkCoinOrderResult(
      @JsonProperty("result") final boolean result,
      @JsonProperty("error_code") final int errorCode,
      @JsonProperty("orders") final OkCoinOrder[] orders) {

    super(result, errorCode);
    this.orders = orders;
  }

  public OkCoinOrder[] getOrders() {

    return orders;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy