Skip to content

Instantly share code, notes, and snippets.

@luks91
Last active October 16, 2017 01:11
Show Gist options
  • Save luks91/56fd9ad7c97c10fa5ea6e11135da2250 to your computer and use it in GitHub Desktop.
Save luks91/56fd9ad7c97c10fa5ea6e11135da2250 to your computer and use it in GitHub Desktop.
interface ServerApi {
@GET("/rest/api/1.0/strings/")
fun getStrings(
@Query("start") start: Int,
@Query("pageLimit") pageLimit: Int
): Flowable<PagedResponse<String>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment