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

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

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

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

public class LgoBalanceUpdate {
  private final long seq;
  private final String type;
  private final String channel;
  private final List> data;

  public LgoBalanceUpdate(
      @JsonProperty("seq") long seq,
      @JsonProperty("type") String type,
      @JsonProperty("channel") String channel,
      @JsonProperty("payload") List> data) {
    this.seq = seq;
    this.type = type;
    this.channel = channel;
    this.data = data;
  }

  public long getSeq() {
    return seq;
  }

  public String getType() {
    return type;
  }

  public String getChannel() {
    return channel;
  }

  public List> getData() {
    return data;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy