Interface SelfLoanProductsApi
public interface SelfLoanProductsApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<String> retrieveAllLoanProducts1(Long clientId) retrofit2.Call<String> retrieveAllLoanProducts1(Long clientId, Map<String, String> headers) retrofit2.Call<String> retrieveLoanProductDetails2(Long productId, Long clientId) retrofit2.Call<String>
-
Method Details
-
retrieveAllLoanProducts1
@GET("v1/self/loanproducts") retrofit2.Call<String> retrieveAllLoanProducts1(@Query("clientId") Long clientId) - Parameters:
clientId- (optional)- Returns:
- Call<String>
-
retrieveLoanProductDetails2
@GET("v1/self/loanproducts/{productId}") retrofit2.Call<String> retrieveLoanProductDetails2(@Path("productId") Long productId, @Query("clientId") Long clientId) - Parameters:
productId- (required)clientId- (optional)- Returns:
- Call<String>
-
retrieveAllLoanProducts1
@GET("v1/self/loanproducts") retrofit2.Call<String> retrieveAllLoanProducts1(@Query("clientId") Long clientId, @HeaderMap Map<String, String> headers) - Parameters:
clientId- (optional)- Returns:
- Call<String>
-
retrieveLoanProductDetails2
@GET("v1/self/loanproducts/{productId}") retrofit2.Call<String> retrieveLoanProductDetails2(@Path("productId") Long productId, @Query("clientId") Long clientId, @HeaderMap Map<String, String> headers) - Parameters:
productId- (required)clientId- (optional)- Returns:
- Call<String>
-