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

info.bitrich.xchangestream.bitmex.dto.RawOrderBook Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package info.bitrich.xchangestream.bitmex.dto;

import java.math.BigDecimal;
import java.util.List;

public class RawOrderBook {
  private String symbol;
  private String timestamp;
  private List> asks;
  private List> bids;

  public List> getAsks() {
    return asks;
  }

  public List> getBids() {
    return bids;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy