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

info.bitrich.xchangestream.lgo.dto.LgoAckUpdate Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import info.bitrich.xchangestream.lgo.domain.LgoAckOrderEvent;
import java.util.List;

public class LgoAckUpdate {

  private final String type;
  private final String channel;
  private final List data;

  public LgoAckUpdate(
      @JsonProperty("type") String type,
      @JsonProperty("channel") String channel,
      @JsonProperty("payload") List data) {
    this.type = type;
    this.channel = channel;
    this.data = data;
  }

  public String getType() {
    return type;
  }

  public String getChannel() {
    return channel;
  }

  public List getData() {
    return data;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy