Package org.knowm.xchange.ripple
Interface RippleAuthenticated
-
@Path("v1") @Produces("application/json") public interface RippleAuthenticated
See https://github.com/ripple/ripple-rest for up-to-date documentation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RippleOrderCancelResponse
orderCancel(String address, long orderId, boolean validated, RippleOrderCancelRequest request)
Cancel an orderRippleOrderEntryResponse
orderEntry(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, RippleException
Places an order- Throws:
IOException
RippleException
-
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, RippleException
Cancel an order- Throws:
IOException
RippleException
-
-