
info.bitrich.xchangestream.binance.dto.BinanceWebsocketTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-stream-binance Show documentation
Show all versions of xchange-stream-binance Show documentation
Development fork. Not for general use.
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