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

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

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

import com.fasterxml.jackson.annotation.JsonFormat;

/** Created by Lukas Zaoralek on 8.11.17. */
@JsonFormat(shape = JsonFormat.Shape.ARRAY)
public class BitfinexWebSocketUpdateOrderbook extends BitfinexWebSocketOrderbookTransaction {
  public BitfinexOrderbookLevel level;

  public BitfinexWebSocketUpdateOrderbook() {}

  public BitfinexWebSocketUpdateOrderbook(BitfinexOrderbookLevel level) {
    this.level = level;
  }

  @Override
  public BitfinexOrderbook toBitfinexOrderBook(BitfinexOrderbook orderbook) {
    orderbook.updateLevel(level);
    return orderbook;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy