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

info.bitrich.xchangestream.binance.dto.BinanceWebsocketTransaction Maven / Gradle / Ivy

The newest version!
package info.bitrich.xchangestream.binance.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

public class BinanceWebsocketTransaction {
  private String stream;
  private T data;

  public BinanceWebsocketTransaction(
      @JsonProperty("stream") String stream, @JsonProperty("data") T data) {
    this.stream = stream;
    this.data = data;
  }

  public String getStream() {
    return stream;
  }

  public T getData() {
    return data;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy