com.xeiam.xchange.vircurex.dto.marketdata.VircurexDepth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-vircurex Show documentation
Show all versions of xchange-vircurex Show documentation
XChange implementation for the Vircurex Exchange
The newest version!
package com.xeiam.xchange.vircurex.dto.marketdata;
import java.math.BigDecimal;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Data object representing depth from Vircurex
*/
public class VircurexDepth {
private final List asks;
private final List bids;
/**
* Constructor
*
* @param asks
* @param bids
*/
public VircurexDepth(@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 "VircurexDepth [asks=" + asks.toString() + ", bids=" + bids.toString() + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy