org.knowm.xchange.cexio.dto.trade.CexIOOrderTransactionsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cexio Show documentation
Show all versions of xchange-cexio Show documentation
XChange implementation for the Cex.io Exchange
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