Skip to content

Instantly share code, notes, and snippets.

@hissain
Last active April 1, 2020 22:28
Show Gist options
  • Save hissain/7b5bbecabd6ac095a59f3660c62043a4 to your computer and use it in GitHub Desktop.
Save hissain/7b5bbecabd6ac095a59f3660c62043a4 to your computer and use it in GitHub Desktop.
ServiceBuilder and RestApi class
import retrofit2.Call
import retrofit2.http.Body
import retrofit2.http.Headers
import retrofit2.http.POST
interface RestApi {
@Headers("Content-Type: application/json")
@POST("users")
fun addUser(@Body userData: UserInfo): Call<UserInfo>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment