All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kucoin.sdk.rest.interfaces.retrofit.VipLendingAPIRetrofit Maven / Gradle / Ivy

The newest version!
package com.kucoin.sdk.rest.interfaces.retrofit;

import com.kucoin.sdk.rest.response.KucoinResponse;
import com.kucoin.sdk.rest.response.OtcLoanAccountResponse;
import com.kucoin.sdk.rest.response.OtcLoanLoanResponse;
import retrofit2.Call;
import retrofit2.http.GET;

/**
 * VipLendingAPIRetrofit
 *
 * @author Colt Han
 * @since 2024/7/23
 */
public interface VipLendingAPIRetrofit {

    @GET("api/v1/otc-loan/loan")
    Call> getOtcLoanLoan();

    @GET("api/v1/otc-loan/accounts")
    Call> getOtcLoanAccounts();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy