com.kucoin.sdk.model.enums.PublicChannelEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.model.enums;
import com.kucoin.sdk.constants.APIConstants;
import lombok.Getter;
/**
* Created by chenshiwei on 2019/1/19.
*/
@Getter
public enum PublicChannelEnum {
TICKER(APIConstants.API_TICKER_TOPIC_PREFIX),
LEVEL2(APIConstants.API_LEVEL2_TOPIC_PREFIX),
MATCH(APIConstants.API_MATCH_TOPIC_PREFIX),
LEVEL3(APIConstants.API_LEVEL3_TOPIC_PREFIX);
private String topicPrefix;
PublicChannelEnum(String topicPrefix) {
this.topicPrefix = topicPrefix;
}
}