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

info.bitrich.xchangestream.bitfinex.dto.BitfinexWebSocketUnSubscriptionMessage Maven / Gradle / Ivy

package info.bitrich.xchangestream.bitfinex.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

/** Created by Lukas Zaoralek on 7.11.17. */
public class BitfinexWebSocketUnSubscriptionMessage {
  private static final String EVENT = "event";
  private static final String CHANNEL_ID = "chanId";

  @JsonProperty(EVENT)
  private String event;

  @JsonProperty(CHANNEL_ID)
  private String channelId;

  public BitfinexWebSocketUnSubscriptionMessage(String channelId) {
    this.event = "unsubscribe";
    this.channelId = channelId;
  }

  public String getEvent() {
    return event;
  }

  public String getChannelId() {
    return channelId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy