Skip to content

Instantly share code, notes, and snippets.

@akndmr
Created March 3, 2018 23:29
Show Gist options
  • Select an option

  • Save akndmr/afdcb446b53a7cdee91fab26c85e3cad to your computer and use it in GitHub Desktop.

Select an option

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