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

com.xeiam.xchange.kraken.dto.marketdata.KrakenDepth Maven / Gradle / Ivy

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

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Data object representing depth from Kraken
 */
public class KrakenDepth {

  private final List asks;
  private final List bids;

  /**
   * Constructor
   * 
   * @param asks
   * @param bids
   */
  public KrakenDepth(@JsonProperty("asks") List asks, @JsonProperty("bids") List bids) {

    this.asks = asks;
    this.bids = bids;

  }

  public List getAsks() {

    return asks;
  }

  public List getBids() {

    return bids;
  }

  @Override
  public String toString() {

    return "KrakenDepth [asks=" + asks + ", bids=" + bids + "]";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy