Skip to content

Instantly share code, notes, and snippets.

@akndmr
Created March 3, 2018 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akndmr/afdcb446b53a7cdee91fab26c85e3cad to your computer and use it in GitHub Desktop.
Save akndmr/afdcb446b53a7cdee91fab26c85e3cad to your computer and use it in GitHub Desktop.
Popvie - MovieService interface
public interface MovieService {
//Get a movie
@GET("movie/{id}")
Call<Movie> getMovieWithId(@Path("id") int movieId, @Query("api_key") String api_key);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment