All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xeiam.xchange.okcoin.dto.account.OkCoinUserInfo Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.xeiam.xchange.okcoin.dto.account;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.okcoin.dto.trade.OkCoinErrorResult;

public class OkCoinUserInfo extends OkCoinErrorResult {

  private final OkCoinInfo info;

  public OkCoinUserInfo(@JsonProperty("result") final boolean result, @JsonProperty("error_code") final int errorCode,
      @JsonProperty("info") OkCoinInfo info) {

    super(result, errorCode);
    this.info = info;
  }

  public OkCoinInfo getInfo() {

    return info;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy