
info.bitrich.xchangestream.cexio.dto.CexioWebSocketTransactionMessage Maven / Gradle / Ivy
The newest version!
package info.bitrich.xchangestream.cexio.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CexioWebSocketTransactionMessage {
private final String e;
private final CexioWebSocketTransaction data;
public CexioWebSocketTransactionMessage(
@JsonProperty("e") String e, @JsonProperty("data") CexioWebSocketTransaction data) {
this.e = e;
this.data = data;
}
public String getE() {
return e;
}
public CexioWebSocketTransaction getData() {
return data;
}
@Override
public String toString() {
final StringBuffer buffer = new StringBuffer("{");
buffer.append("e='").append(e).append('\'');
buffer.append(", data=").append(data);
buffer.append('}');
return buffer.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy