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

info.bitrich.xchangestream.coinmate.v2.dto.CoinmateUnsubscribeMessage Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
package info.bitrich.xchangestream.coinmate.v2.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CoinmateUnsubscribeMessage {
  @JsonProperty("event")
  private String event;

  @JsonProperty("data")
  private CoinmateChannelData data;

  public CoinmateUnsubscribeMessage() {}

  public CoinmateUnsubscribeMessage(String channel) {
    this.event = "unsubscribe";
    this.data = new CoinmateChannelData(channel);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy