@Path(value="v1")
@Produces(value="application/json")
public interface RippleAuthenticated
| Modifier and Type | Method and Description |
|---|---|
RippleOrderCancelResponse |
orderCancel(String address,
long orderId,
boolean validated,
RippleOrderCancelRequest request)
Cancel an order
|
RippleOrderEntryResponse |
orderEntry(String address,
boolean validated,
RippleOrderEntryRequest request)
Places an order
|
@POST
@Path(value="accounts/{address}/orders")
@Consumes(value="application/json")
RippleOrderEntryResponse orderEntry(@PathParam(value="address")
String address,
@QueryParam(value="validated")
boolean validated,
RippleOrderEntryRequest request)
throws IOException,
RippleException
IOExceptionRippleException@DELETE
@Path(value="accounts/{address}/orders/{orderId}")
@Consumes(value="application/json")
RippleOrderCancelResponse orderCancel(@PathParam(value="address")
String address,
@PathParam(value="orderId")
long orderId,
@QueryParam(value="validated")
boolean validated,
RippleOrderCancelRequest request)
throws IOException,
RippleException
IOExceptionRippleExceptionCopyright © 2012–2019 Knowm Inc.. All rights reserved.