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

com.jakewharton.trakt.entities.Activity 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.Date;
import java.util.List;
import com.jakewharton.trakt.TraktEntity;

public class Activity implements TraktEntity {
    private static final long serialVersionUID = -3180174955865068567L;

    public static class Timestamps implements TraktEntity {
        private static final long serialVersionUID = 7812411503074767278L;

        public Date start;
        public Date current;
    }

    public Timestamps timestamps;
    public List activity;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy