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