Interface PovertyLineApi
public interface PovertyLineApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<String> retrieveAll12(String ppiName) retrofit2.Call<String> retrieveAll12(String ppiName, Map<String, String> headers) retrofit2.Call<String> retrieveAll13(String ppiName, Long likelihoodId) retrofit2.Call<String>
-
Method Details
-
retrieveAll12
@GET("v1/povertyLine/{ppiName}") retrofit2.Call<String> retrieveAll12(@Path("ppiName") String ppiName) - Parameters:
ppiName- (required)- Returns:
- Call<String>
-
retrieveAll13
@GET("v1/povertyLine/{ppiName}/{likelihoodId}") retrofit2.Call<String> retrieveAll13(@Path("ppiName") String ppiName, @Path("likelihoodId") Long likelihoodId) - Parameters:
ppiName- (required)likelihoodId- (required)- Returns:
- Call<String>
-
retrieveAll12
@GET("v1/povertyLine/{ppiName}") retrofit2.Call<String> retrieveAll12(@Path("ppiName") String ppiName, @HeaderMap Map<String, String> headers) - Parameters:
ppiName- (required)- Returns:
- Call<String>
-
retrieveAll13
@GET("v1/povertyLine/{ppiName}/{likelihoodId}") retrofit2.Call<String> retrieveAll13(@Path("ppiName") String ppiName, @Path("likelihoodId") Long likelihoodId, @HeaderMap Map<String, String> headers) - Parameters:
ppiName- (required)likelihoodId- (required)- Returns:
- Call<String>
-