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

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

package info.bitrich.xchangestream.coinmate.v2.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CoinmateSubscribeMessage {

  @JsonProperty("event")
  private String event;

  @JsonProperty("data")
  private CoinmateChannelData data;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy