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

info.movito.themoviedbapi.model.find.FindResults Maven / Gradle / Ivy

Go to download

A Java-wrapper around the JSON API provided by TMdB, which is an open database for movie and tv content.

The newest version!
package info.movito.themoviedbapi.model.find;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;
import info.movito.themoviedbapi.model.core.AbstractJsonMapping;
import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class FindResults extends AbstractJsonMapping {
    @JsonProperty("movie_results")
    private List movieResults;

    @JsonProperty("person_results")
    private List personResults;

    @JsonProperty("tv_results")
    private List tvSeriesResults;

    @JsonProperty("tv_season_results")
    private List tvSeasonResults;

    @JsonProperty("tv_episode_results")
    private List tvEpisodeResults;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy