com.uwetrottmann.trakt5.entities.Stats 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;
public class Stats {
public Integer watchers;
public Integer plays;
public Integer collectors;
public Integer comments;
public Integer lists;
public Integer votes;
/** Specific to shows, seasons and episodes. */
public Integer collected_episodes;
}