com.uwetrottmann.trakt5.entities.BaseEpisode 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.OffsetDateTime;
public class BaseEpisode {
public Integer number;
/** collection */
public OffsetDateTime collected_at;
/** watched */
public Integer plays;
public OffsetDateTime last_watched_at;
/** progress */
public Boolean completed;
}