lib / com.kirkbushman.araw / RedditApi / search

search

@GET("/search/.json") abstract fun search(@Query("type") type: String? = null, @Query("sort") sorting: String? = null, @Query("t") timePeriod: String? = null, @Query("show") show: Boolean? = null, @Query("limit") limit: Long, @Query("count") count: Int, @Query("after") after: String? = null, @Query("before") before: String? = null, @Query("raw_json") rawJson: Int? = null, @HeaderMap header: HashMap<String, String>): Call<List<Listing<EnvelopedData>>>