
estonlabs.cxtl.exchanges.binance.fapi.domain.stream.StreamUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxtl Show documentation
Show all versions of cxtl Show documentation
CXTL – Crypto eXchange Trading Library
The newest version!
package estonlabs.cxtl.exchanges.binance.fapi.domain.stream;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
@Getter
@EqualsAndHashCode()
@ToString(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public abstract class StreamUpdate implements BinanceInboundContainer {
public StreamUpdate(MessageType messageType){
this.messageType = messageType;
}
@JsonProperty("e")
private String eventType;
@JsonProperty("E")
private Long eventTime;
@JsonProperty("T")
private Long transactionTime;
private MessageType messageType;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy