
com.iyzipay.google.cloud.vision.model.EntityAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-vision Show documentation
Show all versions of google-cloud-vision Show documentation
Google Cloud Vision Java Client
package com.iyzipay.google.cloud.vision.model;
import java.util.List;
public class EntityAnnotation {
private String mid;
private String locale;
private String description;
private Double score;
private Double confidence;
private Double topicality;
private BoundingPoly boundingPoly;
private List locations;
private List properties;
public String getMid() {
return mid;
}
public void setMid(String mid) {
this.mid = mid;
}
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Double getScore() {
return score;
}
public void setScore(Double score) {
this.score = score;
}
public Double getConfidence() {
return confidence;
}
public void setConfidence(Double confidence) {
this.confidence = confidence;
}
public Double getTopicality() {
return topicality;
}
public void setTopicality(Double topicality) {
this.topicality = topicality;
}
public BoundingPoly getBoundingPoly() {
return boundingPoly;
}
public void setBoundingPoly(BoundingPoly boundingPoly) {
this.boundingPoly = boundingPoly;
}
public List getLocations() {
return locations;
}
public void setLocations(List locations) {
this.locations = locations;
}
public List getProperties() {
return properties;
}
public void setProperties(List properties) {
this.properties = properties;
}
}