Package org.knowm.xchange.quoine
Interface Quoine
-
- All Known Subinterfaces:
QuoineAuthenticated
@Path("/") @Produces("application/json") public interface Quoine
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuoineOrderBookgetOrderBook(int currencyPairCode)QuoineProductgetQuoineProduct(String currencyPairCode)QuoineProduct[]getQuoineProducts()
-
-
-
Method Detail
-
getQuoineProduct
@GET @Path("products/code/CASH/{currency_pair_code}") QuoineProduct getQuoineProduct(@PathParam("currency_pair_code") String currencyPairCode) throws IOException- Throws:
IOException
-
getQuoineProducts
@GET @Path("products") QuoineProduct[] getQuoineProducts() throws IOException- Throws:
IOException
-
getOrderBook
@GET @Path("products/{product_id}/price_levels?full=1") QuoineOrderBook getOrderBook(@PathParam("product_id") int currencyPairCode) throws IOException- Throws:
IOException
-
-