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

info.bitrich.xchangestream.bitfinex.dto.BitfinexWebSocketOrderbookTransaction Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package info.bitrich.xchangestream.bitfinex.dto;

/** Created by Lukas Zaoralek on 8.11.17. */
public abstract class BitfinexWebSocketOrderbookTransaction {
  public String channelId;

  public BitfinexWebSocketOrderbookTransaction() {}

  public BitfinexWebSocketOrderbookTransaction(String channelId) {
    this.channelId = channelId;
  }

  public String getChannelId() {
    return channelId;
  }

  public abstract BitfinexOrderbook toBitfinexOrderBook(BitfinexOrderbook orderbook);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy