Skip to content

Instantly share code, notes, and snippets.

@Rohit-554
Created September 10, 2023 10:06
Show Gist options
  • Select an option

  • Save Rohit-554/1d60fc6eb3cf593b88a2a3d48c45ac58 to your computer and use it in GitHub Desktop.

Select an option

Save Rohit-554/1d60fc6eb3cf593b88a2a3d48c45ac58 to your computer and use it in GitHub Desktop.
Retrofit Interface
interface XmlExampleApiService {
@Headers("Accept: application/xml")
@GET("your-end-point")
suspend fun getCountryLanguage(): Response<languageDto>
// this language dto is already defined refer in the beginning of the article
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment