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

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

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

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

public class LgoUserSnapshot extends LgoUserMessage {

  private final List snapshotData;

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

  public List getSnapshotData() {
    return snapshotData;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy