
com.xeiam.xchange.kraken.dto.marketdata.KrakenDepth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-kraken Show documentation
Show all versions of xchange-kraken Show documentation
XChange implementation for the Kraken Exchange
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