All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uwetrottmann.trakt5.entities.BaseShow Maven / Gradle / Ivy

package com.uwetrottmann.trakt5.entities;

import org.threeten.bp.OffsetDateTime;

import java.util.List;

public class BaseShow {

    public Show show;

    /** collection, watched */
    public List seasons;

    /** collection */
    public OffsetDateTime last_collected_at;
    /** watchlist */
    public OffsetDateTime listed_at;
    /** watched */
    public Integer plays;
    public OffsetDateTime last_watched_at;
    /** progress */
    public Integer aired;
    public Integer completed;
    public List hidden_seasons;
    public Episode next_episode;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy