com.kucoin.sdk.model.enums.PrivateChannelEnum 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/23.
*/
@Getter
public enum PrivateChannelEnum {
ORDER(APIConstants.API_ACTIVATE_TOPIC_PREFIX),
ACCOUNT(APIConstants.API_BALANCE_TOPIC_PREFIX);
private String topicPrefix;
PrivateChannelEnum(String topicPrefix) {
this.topicPrefix = topicPrefix;
}
}