com.uwetrottmann.trakt5.entities.Movie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trakt-java Show documentation
Show all versions of trakt-java Show documentation
trakt-java is a retrofit2 based wrapper around the trakt API v2.
package com.uwetrottmann.trakt5.entities;
import org.threeten.bp.LocalDate;
import java.util.List;
public class Movie extends BaseEntity {
public Integer year;
public MovieIds ids;
// extended info
public String certification;
public String tagline;
/** Date in UTC time. */
public LocalDate released;
public Integer runtime;
public String trailer;
public String homepage;
public String language;
public List genres;
}