Package org.knowm.xchange.ripple
Interface RippleAuthenticated
-
@Path("v1") @Produces("application/json") public interface RippleAuthenticatedSee https://github.com/ripple/ripple-rest for up-to-date documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RippleOrderCancelResponseorderCancel(String address, long orderId, boolean validated, RippleOrderCancelRequest request)Cancel an orderRippleOrderEntryResponseorderEntry(String address, boolean validated, RippleOrderEntryRequest request)Places an order
-
-
-
Method Detail
-
orderEntry
@POST @Path("accounts/{address}/orders") @Consumes("application/json") RippleOrderEntryResponse orderEntry(@PathParam("address") String address, @QueryParam("validated") boolean validated, RippleOrderEntryRequest request) throws IOException, RippleExceptionPlaces an order- Throws:
IOExceptionRippleException
-
orderCancel
@DELETE @Path("accounts/{address}/orders/{orderId}") @Consumes("application/json") RippleOrderCancelResponse orderCancel(@PathParam("address") String address, @PathParam("orderId") long orderId, @QueryParam("validated") boolean validated, RippleOrderCancelRequest request) throws IOException, RippleExceptionCancel an order- Throws:
IOExceptionRippleException
-
-