org.knowm.xchange.coinmate.dto.trade.CoinmateOrders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-coinmate Show documentation
Show all versions of xchange-coinmate Show documentation
XChange implementation for the Coinmate Exchange
package org.knowm.xchange.coinmate.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import org.knowm.xchange.coinmate.dto.CoinmateBaseResponse;
public class CoinmateOrders extends CoinmateBaseResponse> {
public CoinmateOrders(
@JsonProperty("error") boolean error,
@JsonProperty("errorMessage") String errorMessage,
@JsonProperty("data") List data) {
super(error, errorMessage, data);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy