com.jakewharton.trakt.entities.Shout 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
A Java wrapper around the Trakt RESTful API and a simple DSL for easy interaction.
The newest version!
package com.jakewharton.trakt.entities;
import java.util.Calendar;
import com.jakewharton.trakt.TraktEntity;
public class Shout implements TraktEntity {
private static final long serialVersionUID = 4324069488018464744L;
public Calendar inserted;
public String shout;
public UserProfile user;
/** @deprecated Use {@link #inserted} */
@Deprecated
public Calendar getInserted() {
return this.inserted;
}
/** @deprecated Use {@link #shout} */
@Deprecated
public String getShout() {
return this.shout;
}
/** @deprecated Use {@link #user} */
@Deprecated
public UserProfile getUser() {
return this.user;
}
}