Update PersonFind to remove profile path (in Basic model)

This commit is contained in:
Stuart Boston
2015-03-05 08:23:55 +00:00
parent c8e71db71f
commit 34c019a86c
@@ -39,8 +39,6 @@ public class PersonFind extends PersonBasic {
private Boolean adult;
@JsonProperty("popularity")
private Float popularity;
@JsonProperty("profile_path")
private String profilePath;
private List<? extends MediaBasic> knownFor;
public Boolean getAdult() {
@@ -59,14 +57,6 @@ public class PersonFind extends PersonBasic {
this.popularity = popularity;
}
public String getProfilePath() {
return profilePath;
}
public void setProfilePath(String profilePath) {
this.profilePath = profilePath;
}
public List<? extends MediaBasic> getKnownFor() {
return knownFor;
}