com.uwetrottmann.tmdb2.entities.Movie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tmdb-java Show documentation
Show all versions of tmdb-java Show documentation
tmdb-java is a retrofit2 based wrapper around the themoviedb.org API v3.
package com.uwetrottmann.tmdb2.entities;
import java.util.Date;
import java.util.List;
public class Movie {
public Integer id;
public Boolean adult;
public String backdrop_path;
public Collection belongs_to_collection;
public Integer budget;
public List genres;
public String homepage;
public String imdb_id;
public String original_title;
public String overview;
public Double popularity;
public String poster_path;
public List production_companies;
public List production_countries;
public Date release_date;
public Integer revenue;
public Integer runtime;
public List spoken_languages;
public String tagline;
public String title;
public Double vote_average;
public Integer vote_count;
// Following are used with append_to_response
public MovieAlternativeTitles alternative_titles;
public Credits credits;
public ReleaseDatesResults release_dates;
public MovieResultsPage similar;
public Videos videos;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy