Interface SelfLoanProductsApi


public interface SelfLoanProductsApi
  • 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>