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

com.binance.api.client.domain.event.DepthEvent Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.binance.api.client.domain.event;

import com.binance.api.client.constant.BinanceApiConstants;
import com.binance.api.client.domain.market.OrderBookEntry;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;

import java.util.List;

/**
 * Depth delta event for a symbol.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class DepthEvent {

  @JsonProperty("e")
  private String eventType;

  @JsonProperty("E")
  private long eventTime;

  @JsonProperty("s")
  private String symbol;

  @JsonProperty("U")
  private long firstUpdateId;

  /**
   * updateId to sync up with updateid in /api/v1/depth
   */
  @JsonProperty("u")
  private long finalUpdateId;

  /**
   * Bid depth delta.
   */
  @JsonProperty("b")
  private List bids;

  /**
   * Ask depth delta.
   */
  @JsonProperty("a")
  private List asks;

  public String getEventType() {
    return eventType;
  }

  public void setEventType(String eventType) {
    this.eventType = eventType;
  }

  public long getEventTime() {
    return eventTime;
  }

  public void setEventTime(long eventTime) {
    this.eventTime = eventTime;
  }

  public String getSymbol() {
    return symbol;
  }

  public void setSymbol(String symbol) {
    this.symbol = symbol;
  }

  public long getFirstUpdateId() {
    return firstUpdateId;
  }

  public void setFirstUpdateId(final long firstUpdateId) {
    this.firstUpdateId = firstUpdateId;
  }

  public long getFinalUpdateId() {
    return finalUpdateId;
  }

  public void setFinalUpdateId(long finalUpdateId) {
    this.finalUpdateId = finalUpdateId;
  }

  /**
   * @deprecated Use {@link #getFinalUpdateId}
   */
  @Deprecated
  public long getUpdateId() {
    return finalUpdateId;
  }

  /**
   * @deprecated Use {@link #setFinalUpdateId}
   */
  @Deprecated
  public void setUpdateId(long updateId) {
    this.finalUpdateId = updateId;
  }

  public List getBids() {
    return bids;
  }

  public void setBids(List bids) {
    this.bids = bids;
  }

  public List getAsks() {
    return asks;
  }

  public void setAsks(List asks) {
    this.asks = asks;
  }

  @Override
  public String toString() {
    return new ToStringBuilder(this, BinanceApiConstants.TO_STRING_BUILDER_STYLE)
        .append("eventType", eventType)
        .append("eventTime", eventTime)
        .append("symbol", symbol)
        .append("firstUpdateId", firstUpdateId)
        .append("finalUpdateId", finalUpdateId)
        .append("bids", bids)
        .append("asks", asks)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy