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

info.movito.themoviedbapi.model.people.PersonDb 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.

There is a newer version: 2.2.0
Show newest version
package info.movito.themoviedbapi.model.people;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import info.movito.themoviedbapi.model.core.NamedIdElement;
import info.movito.themoviedbapi.model.movies.changes.ChangeResults;
import info.movito.themoviedbapi.model.people.credits.CombinedPersonCredits;
import info.movito.themoviedbapi.model.people.credits.MovieCredits;
import info.movito.themoviedbapi.model.people.credits.TvCredits;
import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
@JsonTypeInfo(use = JsonTypeInfo.Id.NONE)
public class PersonDb extends NamedIdElement {
    @JsonProperty("adult")
    private Boolean adult;

    @JsonProperty("also_known_as")
    private List alsoKnownAs;

    @JsonProperty("biography")
    private String biography;

    @JsonProperty("birthday")
    private String birthday;

    @JsonProperty("deathday")
    private String deathDay;

    @JsonProperty("homepage")
    private String homepage;

    @JsonProperty("place_of_birth")
    private String placeOfBirth;

    @JsonProperty("imdb_id")
    private String imdbId;

    @JsonProperty("popularity")
    private Double popularity;

    @JsonProperty("gender")
    private Gender gender;

    @JsonProperty("known_for_department")
    private String knownForDepartment;

    @JsonProperty("profile_path")
    private String profilePath;

    /* append to responses */

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("combined_credits")
    private CombinedPersonCredits combinedCredits;

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("changes")
    private ChangeResults changes;

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("external_ids")
    private ExternalIds externalIds;

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("images")
    private PersonImages images;

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("movie_credits")
    private MovieCredits movieCredits;

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("tv_credits")
    private TvCredits tvCredits;

    /** Can be null if not appended to the request (append to response). */
    @JsonProperty("translations")
    private Translations translations;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy