Skip to content

Instantly share code, notes, and snippets.

@BurakDizlek
Last active August 25, 2017 08:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BurakDizlek/1de65779511cde5187814f3db07df075 to your computer and use it in GitHub Desktop.
Save BurakDizlek/1de65779511cde5187814f3db07df075 to your computer and use it in GitHub Desktop.
Retrofit interface sample
interface Service {
@FormUrlEncoded
@POST("info/getInfoDetail")
fun GetInfoDetail(@FieldMap params: HashMap<String, Any>): Call<InfoDetailObject>
@GET("search/{search_word}")
fun getSuggestSearchWords(@Path("search_word") search_word: String): Call<SearchWorObject>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment