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

com.uwetrottmann.trakt5.entities.CheckinError Maven / Gradle / Ivy

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy