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

info.bitrich.xchangestream.poloniex2.dto.OrderbookModifiedEvent Maven / Gradle / Ivy

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

import java.math.BigDecimal;

/** Created by Lukas Zaoralek on 11.11.17. */
public class OrderbookModifiedEvent {
  private String type;
  private BigDecimal price;
  private BigDecimal volume;

  public OrderbookModifiedEvent(String type, BigDecimal price, BigDecimal volume) {
    this.type = type;
    this.price = price;
    this.volume = volume;
  }

  public String getType() {
    return type;
  }

  public BigDecimal getPrice() {
    return price;
  }

  public BigDecimal getVolume() {
    return volume;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy