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

info.bitrich.xchangestream.coincheck.dto.CoincheckSubscriptionNames Maven / Gradle / Ivy

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

import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
public enum CoincheckSubscriptionNames {
  ORDERBOOK("orderbook"),
  TRADES("trades");

  @Getter private final String name;

  public String toString() {
    return getName();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy