com.kucoin.sdk.rest.interfaces.retrofit.WithdrawalAPIRetrofit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kucoin-java-sdk Show documentation
Show all versions of kucoin-java-sdk Show documentation
Fixed fork of the official Kucoin SDK
The newest version!
/**
* Copyright 2019 Mek Global Limited.
*/
package com.kucoin.sdk.rest.interfaces.retrofit;
import com.kucoin.sdk.rest.request.WithdrawApplyRequest;
import com.kucoin.sdk.rest.response.KucoinResponse;
import com.kucoin.sdk.rest.response.Pagination;
import com.kucoin.sdk.rest.response.WithdrawApplyResponse;
import com.kucoin.sdk.rest.response.WithdrawQuotaResponse;
import com.kucoin.sdk.rest.response.WithdrawResponse;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.DELETE;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Path;
import retrofit2.http.Query;
/**
* Created by chenshiwei on 2019/1/10.
*/
public interface WithdrawalAPIRetrofit {
@GET("api/v1/withdrawals/quotas")
Call> getWithdrawQuotas(@Query("currency") String currency);
@POST("api/v1/withdrawals")
Call> applyWithdraw(@Body WithdrawApplyRequest request);
@DELETE("api/v1/withdrawals/{withdrawalId}")
Call> cancelWithdraw(@Path("withdrawalId") String withdrawalId);
@GET("api/v1/withdrawals")
Call>> getWithdrawPageList(@Query("currentPage") int currentPage,
@Query("pageSize") int pageSize,
@Query("currency") String currency,
@Query("status") String status,
@Query("startAt") Long startAt,
@Query("endAt") Long endAt);
}