com.uwetrottmann.trakt5.entities.CheckinError 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 retrofit2.Response;
import javax.annotation.Nullable;
/**
* Type to use for parsing check in error response (call {@link com.uwetrottmann.trakt5.TraktV2#checkForCheckinError(Response)}
* with this class) if you get a 409 HTTP status code when checking in.
*/
public class CheckinError {
/** Timestamp which is when the user can check in again. */
@Nullable
public OffsetDateTime expires_at;
}