com.uwetrottmann.trakt5.entities.BaseCheckin 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 abstract class BaseCheckin {
/** Control sharing to any connected social networks. */
public ShareSettings sharing;
/** Message used for sharing. If not sent, it will use the watching string in the user settings. */
public String message;
/** Foursquare venue ID. */
public String venue_id;
/** Foursquare venue name. */
public String venue_name;
public String app_version;
/** Build date of the app. */
public String app_date;
}