com.kucoin.sdk.rest.interfaces.WebsocketPublicAPI 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.rest.interfaces;
import com.kucoin.sdk.rest.response.WebsocketTokenResponse;
import java.io.IOException;
/**
* Created by chenshiwei on 2019/1/18.
*/
public interface WebsocketPublicAPI {
/**
* apply for a public token to create a websocket connection
*
* @return A new public API token.
*/
WebsocketTokenResponse getPublicToken() throws IOException;
}