com.uwetrottmann.trakt5.entities.BaseEntity 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;
import java.util.List;
public abstract class BaseEntity {
public String title;
// extended info
public String overview;
public Double rating;
public Integer votes;
public OffsetDateTime updated_at;
public List available_translations;
}