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 TypeMethodDescriptionauth(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneAuthRequest coinoneAuthRequest) cancelOrder(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneTradeCancelRequest orderParams) getOrder(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneOrderInfoRequest coinoneOrderInfoRequest) getWallet(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneBalancesRequest coinoneBalanceRequest) limitBuy(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneTradeRequest coinoneTradeRequest) limitSell(si.mazi.rescu.ParamsDigest payload, si.mazi.rescu.ParamsDigest signature, CoinoneTradeRequest coinoneTradeRequest) 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:
IOExceptionCoinoneException
-
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:
IOExceptionCoinoneException
-
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:
IOExceptionCoinoneException
-
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:
IOExceptionCoinoneException
-
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:
IOExceptionCoinoneException
-
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:
IOExceptionCoinoneException
-
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:
IOExceptionCoinoneException
-