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

com.jakewharton.trakt.entities.Shout Maven / Gradle / Ivy

Go to download

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy