APIResponse<List<String>> |
TheTVDBApi.Extended.addToFavorites(long seriesId) |
Adds the supplied series ID to the user’s favorite’s list and returns a response object containing the
updated list as plain Strings.
|
APIResponse<List<Rating>> |
TheTVDBApi.Extended.addToRatings(String itemType,
long itemId,
long itemRating) |
Updates a given rating of a given type and return a response object containing the modified rating, mapped as
Java DTO.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.deleteFromFavorites(long seriesId) |
Deletes the given series ID from the user’s favorite’s list and returns a response object containing the
updated list as plain Strings.
|
APIResponse<Series> |
TheTVDBApi.Extended.filterSeries(long seriesId,
QueryParameters queryParameters) |
Returns a response object containing a filtered series record based on the given parameters, mapped as Java
DTO.
|
APIResponse<List<Actor>> |
TheTVDBApi.Extended.getActors(long seriesId) |
Returns a response object containing a list of actors for a specific series mapped as Java DTO.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.getAvailableEpisodeQueryParameters(long seriesId) |
Returns a response object containing a list of keys which are valid parameters for querying episodes, as
plain Strings.
|
APIResponse<List<ImageQueryParameter>> |
TheTVDBApi.Extended.getAvailableImageQueryParameters(long seriesId) |
Returns a response object containing a list of valid parameters for querying a series images, mapped as Java
DTO.
|
APIResponse<List<Language>> |
TheTVDBApi.Extended.getAvailableLanguages() |
Returns a response object containing a list of all supported languages mapped as Java DTO.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.getAvailableLastUpdatedQueryParameters() |
Returns a response object containing a list of valid parameters for querying series which have been updated
lately, as plain Strings.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.getAvailableRatingsQueryParameters() |
Returns a response object containing a list of valid parameters for querying user ratings, as plain Strings.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.getAvailableSeriesFilterParameters(long seriesId) |
Returns a response object containing a list of keys which are valid parameters for filtering series, as plain
Strings.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.getAvailableSeriesSearchParameters() |
Returns a response object containing possible query parameters, which can be used to search for series,
mapped as Java DTO.
|
APIResponse<Episode> |
TheTVDBApi.Extended.getEpisode(long episodeId) |
Returns a response object containing the full information for a given episode id as mapped Java DTO.
|
APIResponse<List<Episode>> |
TheTVDBApi.Extended.getEpisodes(long seriesId,
QueryParameters queryParameters) |
Returns a response object containing all episodes of a specific series mapped as Java DTO.
|
APIResponse<List<String>> |
TheTVDBApi.Extended.getFavorites() |
Returns a response object containing a list of favorite series for a given user, as plain Strings.
|
APIResponse<Language> |
TheTVDBApi.Extended.getLanguage(long languageId) |
Returns a response object containing further language information for a given language ID mapped as Java DTO.
|
APIResponse<Movie> |
TheTVDBApi.Extended.getMovie(long movieId) |
Returns a response object containing detailed information for a specific movie mapped as Java DTO.
|
APIResponse<List<Long>> |
TheTVDBApi.Extended.getMovieUpdates(long since) |
Returns a response object containing a list of ID's of all movies, that have been updated since the given
epoch timestamp, mapped as Java DTO.
|
APIResponse<List<Rating>> |
TheTVDBApi.Extended.getRatings() |
Returns a response object containing a list of ratings for the given user, mapped as Java DTO.
|
APIResponse<Series> |
TheTVDBApi.Extended.getSeries(long seriesId) |
Returns a response object containing detailed information for a specific series mapped as Java DTO.
|
APIResponse<SeriesSummary> |
TheTVDBApi.Extended.getSeriesEpisodesSummary(long seriesId) |
Returns a response object containing a summary of the episodes and seasons available for a series, mapped as
Java DTO.
|
APIResponse<Map<String,String>> |
TheTVDBApi.Extended.getSeriesHeaderInformation(long seriesId) |
Returns a response object containing header information for a specific series as key/value pairs.
|
APIResponse<ImageSummary> |
TheTVDBApi.Extended.getSeriesImagesSummary(long seriesId) |
Returns a response object containing a summary of the images types and counts available for a particular
series, mapped as Java DTO.
|
APIResponse<User> |
TheTVDBApi.Extended.getUser() |
Returns a response object containing basic information about the currently authenticated user, mapped as Java
DTO.
|
APIResponse<List<Episode>> |
TheTVDBApi.Extended.queryEpisodes(long seriesId,
QueryParameters queryParameters) |
Returns a response object containing all matching episodes of a specific series mapped as Java DTO.
|
APIResponse<List<Image>> |
TheTVDBApi.Extended.queryImages(long seriesId,
QueryParameters queryParameters) |
Returns a response object containing the matching result of querying images for a specific series, mapped as
Java DTO.
|
APIResponse<Map<Long,Long>> |
TheTVDBApi.Extended.queryLastUpdated(QueryParameters queryParameters) |
Returns a response object containing a map of series that have changed in a maximum of one week blocks since
the provided fromTime query parameter, as plain Strings.
|
APIResponse<List<Rating>> |
TheTVDBApi.Extended.queryRatings(QueryParameters queryParameters) |
Returns a response object containing a list of ratings for a given user that match the query, mapped as Java
DTO.
|
APIResponse<List<SeriesSearchResult>> |
TheTVDBApi.Extended.searchSeries(QueryParameters queryParameters) |
Returns a response object containing a list of series search results based on the given query parameters
mapped as Java DTO.
|