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

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

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

import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type", visible = true)
@JsonSubTypes({
  @JsonSubTypes.Type(value = LgoUserUpdate.class, name = "update"),
  @JsonSubTypes.Type(value = LgoUserSnapshot.class, name = "snapshot")
})
public class LgoUserMessage {

  private final long batchId;
  private final String type;
  private final String channel;
  private final String productId;

  public LgoUserMessage(long batchId, String type, String channel, String productId) {
    this.batchId = batchId;
    this.type = type;
    this.channel = channel;
    this.productId = productId;
  }

  public long getBatchId() {
    return batchId;
  }

  public String getType() {
    return type;
  }

  public String getChannel() {
    return channel;
  }

  public String getProductId() {
    return productId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy