Package org.knowm.xchange.coinone
Interface CoinoneAuthenticated
- All Superinterfaces:
Coinone
@Path("") @Produces("application/json") @Consumes("application/json") public interface CoinoneAuthenticated extends Coinone
-
Method Summary
Modifier and Type Method Description CoinoneWithdrawResponse
auth(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneAuthRequest coinoneAuthRequest)
CoinoneTradeResponse
cancelOrder(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneTradeCancelRequest orderParams)
CoinoneOrderInfoResponse
getOrder(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneOrderInfoRequest coinoneOrderInfoRequest)
CoinoneBalancesResponse
getWallet(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneBalancesRequest coinoneBalanceRequest)
CoinoneTradeResponse
limitBuy(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneTradeRequest coinoneTradeRequest)
CoinoneTradeResponse
limitSell(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneTradeRequest coinoneTradeRequest)
CoinoneWithdrawResponse
withdrawFund(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneWithdrawRequest coinoneWithdrawRequest)
Methods inherited from interface org.knowm.xchange.coinone.Coinone
getOrderBook, getTicker, getTrades
-
Method Details
-
getWallet
@POST @Path("v2/account/balance/") CoinoneBalancesResponse getWallet(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneBalancesRequest coinoneBalanceRequest) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
limitBuy
@POST @Path("v2/order/limit_buy/") CoinoneTradeResponse limitBuy(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneTradeRequest coinoneTradeRequest) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
limitSell
@POST @Path("v2/order/limit_sell/") CoinoneTradeResponse limitSell(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneTradeRequest coinoneTradeRequest) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
getOrder
@POST @Path("v2/order/order_info/") CoinoneOrderInfoResponse getOrder(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneOrderInfoRequest coinoneOrderInfoRequest) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
cancelOrder
@POST @Path("v2/order/cancel/") CoinoneTradeResponse cancelOrder(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneTradeCancelRequest orderParams) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
auth
@POST @Path("v2/transaction/auth_number/") CoinoneWithdrawResponse auth(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneAuthRequest coinoneAuthRequest) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
withdrawFund
@POST @Path("v2/transaction/coin/") CoinoneWithdrawResponse withdrawFund(@HeaderParam("X-COINONE-PAYLOAD") si.mazi.rescu.ParamsDigest payload, @HeaderParam("X-COINONE-SIGNATURE") si.mazi.rescu.ParamsDigest signature, CoinoneWithdrawRequest coinoneWithdrawRequest) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-