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

com.xeiam.xchange.bitmarket.dto.account.BitMarketAccountInfoResponse Maven / Gradle / Ivy

The newest version!
package com.xeiam.xchange.bitmarket.dto.account;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.bitmarket.dto.BitMarketAPILimit;
import com.xeiam.xchange.bitmarket.dto.BitMarketBaseResponse;

/**
 * @author kfonal
 */
public class BitMarketAccountInfoResponse extends BitMarketBaseResponse {

  public BitMarketAccountInfoResponse(@JsonProperty("success") boolean success, @JsonProperty("data") BitMarketAccountInfo accountInfo,
      @JsonProperty("limit") BitMarketAPILimit limit, @JsonProperty("error") int error, @JsonProperty("errorMsg") String errorMsg) {

    super(success, accountInfo, limit, error, errorMsg);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy