![JAR search and dependency download from the Maven repository](/logo.png)
org.oxerr.peatio.rest.dto.OrderBook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of peatio-client-rest Show documentation
Show all versions of peatio-client-rest Show documentation
Client for <a href="http://peat.io">Peatio</a> RESTful API.
The newest version!
package org.oxerr.peatio.rest.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Order book shows orders on market.
*/
public class OrderBook extends BaseObject {
private final Order[] asks;
private final Order[] bids;
public OrderBook(
@JsonProperty("asks") Order[] asks,
@JsonProperty("bids") Order[] bids) {
this.asks = asks;
this.bids = bids;
}
public Order[] getAsks() {
return asks;
}
public Order[] getBids() {
return bids;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy