com.xeiam.xchange.bitstamp.dto.marketdata.BitstampStreamingOrderBook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-bitstamp Show documentation
Show all versions of xchange-bitstamp Show documentation
XChange implementation for the Bitstamp Exchange
package com.xeiam.xchange.bitstamp.dto.marketdata;
import java.math.BigDecimal;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author Ryan Sundberg
*/
public class BitstampStreamingOrderBook extends BitstampOrderBook {
/**
* Constructor
*
* @param bids
* @param asks
*/
public BitstampStreamingOrderBook(@JsonProperty("bids") List> bids, @JsonProperty("asks") List> asks) {
super(null, bids, asks);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy