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

com.xeiam.xchange.kraken.dto.account.results.KrakenBalanceResult Maven / Gradle / Ivy

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

import java.math.BigDecimal;
import java.util.Map;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.xeiam.xchange.kraken.dto.KrakenResult;

/**
 * @author Benedikt
 */
public class KrakenBalanceResult extends KrakenResult> {

  /**
   * Constructor
   * 
   * @param error List of errors
   * @param result Recent trades
   */
  public KrakenBalanceResult(@JsonProperty("error") String[] error, @JsonProperty("result") Map result) {

    super(result, error);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy