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

info.bitrich.xchangestream.cexio.dto.CexioWebSocketOrderMessage 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;

public class CexioWebSocketOrderMessage {

  private final String e;
  private final CexioWebSocketOrder data;

  public CexioWebSocketOrderMessage(
      @JsonProperty("e") String e, @JsonProperty("data") CexioWebSocketOrder data) {
    this.e = e;
    this.data = data;
  }

  public String getE() {
    return e;
  }

  public CexioWebSocketOrder getData() {
    return data;
  }

  @Override
  public String toString() {
    return "CexioWebSocketOrderMessage {" + "e='" + e + '\'' + ", data=" + data + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy