Created
July 27, 2019 11:15
-
-
Save kinisoftware/1aee905b8adf299e33ca4ea8b03d9e14 to your computer and use it in GitHub Desktop.
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 TheMovieDBAPI { | |
| @GET("movie/now_playing") | |
| fun getNowPlaying( | |
| @Query("api_key") apiKey: String, | |
| @Query("language") language: String, | |
| @Query("page") page: Int, | |
| @Query("region") region: String | |
| ): Call<ApiResults> | |
| @GET("movie/upcoming") | |
| fun getUpcomings( | |
| @Query("api_key") apiKey: String, | |
| @Query("language") language: String, | |
| @Query("page") page: Int, | |
| @Query("region") region: String | |
| ): Call<ApiResults> | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment