org.knowm.xchange.coinmate.dto.trade.CoinmateOrder 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 org.knowm.xchange.coinmate.dto.CoinmateBaseResponse;
public class CoinmateOrder extends CoinmateBaseResponse {
public CoinmateOrder(
@JsonProperty("error") boolean error,
@JsonProperty("errorMessage") String errorMessage,
@JsonProperty("data") CoinmateOrderHistoryEntry data) {
super(error, errorMessage, data);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy