Interface IndependentReserve
@Path("Public")
@Produces("application/json")
public interface IndependentReserve
Author: Kamil Zbikowski Date: 4/9/15
-
Method Summary
Modifier and TypeMethodDescriptiongetMarketSummary
(String primaryCurrencyCode, String secondaryCurrencyCode) getOrderBook
(String primaryCurrencyCode, String secondaryCurrencyCode)
-
Method Details
-
getOrderBook
@GET @Path("/GetAllOrders") IndependentReserveOrderBook getOrderBook(@QueryParam("primaryCurrencyCode") String primaryCurrencyCode, @QueryParam("secondaryCurrencyCode") String secondaryCurrencyCode) throws IOException - Throws:
IOException
-
getMarketSummary
@GET @Path("/GetMarketSummary") IndependentReserveTicker getMarketSummary(@QueryParam("primaryCurrencyCode") String primaryCurrencyCode, @QueryParam("secondaryCurrencyCode") String secondaryCurrencyCode) throws IOException - Throws:
IOException
-