
com.xeiam.xchange.cointrader.dto.trade.CointraderOpenOrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cointrader Show documentation
Show all versions of xchange-cointrader Show documentation
XChange implementation for the Cointrader Exchange
The newest version!
package com.xeiam.xchange.cointrader.dto.trade;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.cointrader.dto.CointraderBaseResponse;
public class CointraderOpenOrdersResponse extends CointraderBaseResponse {
protected CointraderOpenOrdersResponse(@JsonProperty("success") Boolean success, @JsonProperty("message") String message,
@JsonProperty("data") CointraderOrder[] data) {
super(success, message, data);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy