Created
September 10, 2023 10:06
-
-
Save Rohit-554/1d60fc6eb3cf593b88a2a3d48c45ac58 to your computer and use it in GitHub Desktop.
Retrofit Interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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