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

info.bitrich.xchangestream.lgo.dto.LgoLevel2Data Maven / Gradle / Ivy

The newest version!
package info.bitrich.xchangestream.lgo.dto;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

public class LgoLevel2Data {

  private final List> bids;
  private final List> asks;

  public LgoLevel2Data(
      @JsonProperty("bids") List> bids,
      @JsonProperty("asks") List> asks) {
    this.bids = bids;
    this.asks = asks;
  }

  public List> getBids() {
    return bids;
  }

  public List> getAsks() {
    return asks;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy