Skip to content

Instantly share code, notes, and snippets.

@Levi-Moreira
Created May 18, 2018 00:07
Show Gist options
  • Save Levi-Moreira/bab4c71f8ed1192d0970d95bf1868905 to your computer and use it in GitHub Desktop.
Save Levi-Moreira/bab4c71f8ed1192d0970d95bf1868905 to your computer and use it in GitHub Desktop.
interface StackOverflowAPI {
@Headers("Content-Type: application/json", "Accept: application/json")
@GET("/2.2/users")
fun getTopUsers(
@Query("page") page: Int,
@Query("pagesize") pagesize: Int,
@Query("order") order: String = "desc",
@Query("sort") sort: String = "reputation",
@Query("site") site: String = "stackoverflow"
): Single<SOResponse<User>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment