![JAR search and dependency download from the Maven repository](/logo.png)
com.kucoin.sdk.rest.interfaces.retrofit.DepositAPIRetrofit 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.DepositAddressCreateRequest;
import com.kucoin.sdk.rest.response.DepositAddressResponse;
import com.kucoin.sdk.rest.response.DepositResponse;
import com.kucoin.sdk.rest.response.KucoinResponse;
import com.kucoin.sdk.rest.response.Pagination;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;
/**
* Created by chenshiwei on 2019/1/10.
*/
public interface DepositAPIRetrofit {
@POST("api/v1/deposit-addresses")
Call> createDepositAddress(@Body DepositAddressCreateRequest request);
@GET("api/v1/deposit-addresses")
Call> getDepositAddress(@Query("currency") String currency);
@GET("api/v1/deposits")
Call>> getDepositPageList(@Query("currentPage") int currentPage,
@Query("pageSize") int pageSize,
@Query("currency") String currency,
@Query("status") String status,
@Query("startAt") Long startAt,
@Query("endAt") Long endAt);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy