com.kucoin.sdk.rest.interfaces.CurrencyAPI 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.exception.KucoinApiException;
import com.kucoin.sdk.rest.response.CurrencyDetailResponse;
import com.kucoin.sdk.rest.response.CurrencyResponse;
import java.io.IOException;
import java.util.List;
/**
* Created by chenshiwei on 2019/1/11.
*/
public interface CurrencyAPI {
/**
* List known currencies.
*
* @return Currencies.
* @throws IOException on socket errors.
* @throws KucoinApiException when errors are returned from the exchange.
*/
List getCurrencies() throws IOException;
/**
* Get single currency detail
*
* @param currency the code of the currency
* @return Currency detail.
* @throws IOException on socket errors.
* @throws KucoinApiException when errors are returned from the exchange.
*/
CurrencyDetailResponse getCurrencyDetail(String currency) throws IOException;
}