info.movito.themoviedbapi.model.tv.episode.GuestStar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of themoviedbapi Show documentation
Show all versions of themoviedbapi Show documentation
A Java-wrapper around the JSON API provided by TMdB, which is an open database for movie and tv content.
package info.movito.themoviedbapi.model.tv.episode;
import com.fasterxml.jackson.annotation.JsonProperty;
import info.movito.themoviedbapi.model.core.NamedIdElement;
import info.movito.themoviedbapi.model.people.Gender;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = true)
public class GuestStar extends NamedIdElement {
@JsonProperty("character")
private String character;
@JsonProperty("credit_id")
private String creditId;
@JsonProperty("order")
private Integer order;
@JsonProperty("adult")
private Boolean adult;
@JsonProperty("gender")
private Gender gender;
@JsonProperty("known_for_department")
private String knownForDepartment;
@JsonProperty("original_name")
private String originalName;
@JsonProperty("popularity")
private Double popularity;
@JsonProperty("profile_path")
private String profilePath;
}