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

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

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

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

public class LgoUserUpdate extends LgoUserMessage {

  private final List orderEvents;

  public LgoUserUpdate(
      @JsonProperty("batch_id") long batchId,
      @JsonProperty("type") String type,
      @JsonProperty("channel") String channel,
      @JsonProperty("product_id") String productId,
      @JsonProperty("payload") List orderEvents) {
    super(batchId, type, channel, productId);
    this.orderEvents = orderEvents;
  }

  public List getOrderEvents() {
    return orderEvents;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy