com.omertron.imdbapi.model.ImdbMovieCharacter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-imdb Show documentation
Show all versions of api-imdb Show documentation
API for the mobile JSON API of IMDB
package com.omertron.imdbapi.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ImdbMovieCharacter extends AbstractJsonMapping {
@JsonProperty("char")
private String character = "";
@JsonProperty("title")
private ImdbMovie title = new ImdbMovie();
@JsonProperty("attr")
private String attribute = "";
@JsonProperty("nconst")
private String actorId = "";
public String getActorId() {
return actorId;
}
public void setActorId(String actorId) {
this.actorId = actorId;
}
public String getCharacter() {
return character;
}
public void setCharacter(String character) {
this.character = character;
}
public ImdbMovie getTitle() {
return title;
}
public void setTitle(ImdbMovie title) {
this.title = title;
}
public String getAttribute() {
return attribute;
}
public void setAttribute(String attribute) {
this.attribute = attribute;
}
} © 2015 - 2026 Weber Informatics LLC | Privacy Policy