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

info.bitrich.xchangestream.bitstamp.v2.dto.BitstampWebSocketData Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

public class BitstampWebSocketData {

  private static final String CHANNEL = "channel";

  private String channel;

  @JsonCreator
  public BitstampWebSocketData(@JsonProperty(CHANNEL) String channel) {
    this.channel = channel;
  }

  public String getChannel() {
    return channel;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy