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

org.knowm.xchange.kraken.dto.account.results.KrakenQueryLedgerResult Maven / Gradle / Ivy

The newest version!
package org.knowm.xchange.kraken.dto.account.results;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
import org.knowm.xchange.kraken.dto.KrakenResult;
import org.knowm.xchange.kraken.dto.account.KrakenLedger;

public class KrakenQueryLedgerResult extends KrakenResult> {

  /**
   * Constructor
   *
   * @param result
   * @param error
   */
  public KrakenQueryLedgerResult(
      @JsonProperty("result") Map result,
      @JsonProperty("error") String[] error) {

    super(result, error);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy