2020/03/31 [Android]RecyclerView と Paging を組み合わせサンプルと解説 No3
interface QiitaService { @GET("/api/v2/items") fun getItems(@Query("page")page: Int, @Query("per_page") perPage: Int): Call<List<Item>> }