com.xeiam.xchange.okcoin.dto.marketdata.OkCoinTickerResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-okcoin Show documentation
Show all versions of xchange-okcoin Show documentation
XChange implementation for OKCoin
package com.xeiam.xchange.okcoin.dto.marketdata;
import com.fasterxml.jackson.annotation.JsonProperty;
public class OkCoinTickerResponse {
private final OkCoinTicker ticker;
public OkCoinTickerResponse(@JsonProperty("ticker") OkCoinTicker ticker) {
this.ticker = ticker;
}
public OkCoinTicker getTicker() {
return ticker;
}
}