com.xeiam.xchange.okcoin.dto.account.OkCoinInfo 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.account;
import com.fasterxml.jackson.annotation.JsonProperty;
public class OkCoinInfo {
private final OkCoinFunds funds;
public OkCoinInfo(@JsonProperty("funds") final OkCoinFunds funds) {
this.funds = funds;
}
public OkCoinFunds getFunds() {
return funds;
}
}