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

org.knowm.xchange.cexio.dto.trade.CexIOOrderTransactionsResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import org.knowm.xchange.cexio.dto.CexIOApiResponse;

public class CexIOOrderTransactionsResponse extends CexIOApiResponse {
  public CexIOOrderTransactionsResponse(
      @JsonProperty("e") final String e,
      @JsonProperty("data") final CexIOOrderWithTransactions data,
      @JsonProperty("ok") final String ok,
      @JsonProperty("error") final String error) {
    super(e, data, ok, error);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy