Back to project page SurgePriceWidget.
The source code is released under:
MIT License
If you think the Android project SurgePriceWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package me.mattlogan.surgepricewidget.api; //from w w w . j a va2 s .c o m import java.util.Map; import me.mattlogan.surgepricewidget.api.model.PriceListWrapper; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.QueryMap; public interface UberApi { @GET("/v1/estimates/price") void getPriceEstimates(@QueryMap Map<String, Float> locations, Callback<PriceListWrapper> callback); }