com.uwetrottmann.trakt5.entities.Show 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 com.uwetrottmann.trakt5.enums.Status;
import org.threeten.bp.OffsetDateTime;
import java.util.List;
public class Show extends BaseEntity {
public Integer year;
public ShowIds ids;
// extended info
public OffsetDateTime first_aired;
public Airs airs;
public Integer runtime;
public String certification;
public String network;
public String country;
public String trailer;
public String homepage;
public Status status;
public String language;
public List genres;
}