I am trying to work with the TheMovieDB found here.
Within this database, I am hoping to obtain access to images and descriptions of movies.
I understand that wit RetroFit, you must create an API Interface for the associated @GET request.
I am trying to determine the model class I should create for my TheMovieDatabase to pass into my RetroFit API interface. I am unsure if this is something I should be looking for on TheMovieDatabase documentation or if I can create a standard POJO:
public interface ApiInterface{
@GET("""""""");
Call<TheMovieDatbase> getImages(@Query("text") String query);
}
Any help or advice is appreciated.