Created
December 29, 2016 08:22
-
-
Save dharmakshetri/46065994bf554becf36795765bab07be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package co.apidemos.rest; | |
import co.apidemos.model.StackOverFlowData; | |
import retrofit2.Call; | |
import retrofit2.http.GET; | |
import retrofit2.http.Query; | |
/** | |
* Created by dharma kshetri on 12/27/16. | |
*/ | |
public interface UserEndPoints { | |
@GET("/2.2/users?pagesize=10&order=desc&sort=reputation&site=stackoverflow") | |
Call<StackOverFlowData> getUsers(@Query("sort") String sort); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment