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

info.bitrich.xchangestream.cexio.dto.CexioWebSocketOrderBookSubscribeResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Date;
import java.util.List;

public class CexioWebSocketOrderBookSubscribeResponse {
  @JsonProperty public final Date timestamp;

  @JsonProperty public final List> bids;

  @JsonProperty public final List> asks;

  @JsonProperty public final String pair;

  @JsonProperty public final BigInteger id;

  public CexioWebSocketOrderBookSubscribeResponse(
      @JsonProperty(value = "timestamp", required = false) Date timestamp,
      @JsonProperty(value = "time", required = false) Date time,
      @JsonProperty("bids") List> bids,
      @JsonProperty("asks") List> asks,
      @JsonProperty("pair") String pair,
      @JsonProperty("id") BigInteger id) {
    if (timestamp == null && time == null) {
      throw new IllegalArgumentException("Both time and timestamp cannot be null");
    }
    this.timestamp = timestamp != null ? timestamp : time;
    this.bids = bids;
    this.asks = asks;
    this.pair = pair;
    this.id = id;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy