panda.ex.gcloud.vision.images.Paragraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube Show documentation
Show all versions of panda-tube Show documentation
Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.
The newest version!
package panda.ex.gcloud.vision.images;
import java.util.List;
public class Paragraph {
private TextProperty property;
private BoundingPoly boundingBox;
private List words;
public TextProperty getProperty() {
return property;
}
public void setProperty(TextProperty property) {
this.property = property;
}
public BoundingPoly getBoundingBox() {
return boundingBox;
}
public void setBoundingBox(BoundingPoly boundingBox) {
this.boundingBox = boundingBox;
}
public List getWords() {
return words;
}
public void setWords(List words) {
this.words = words;
}
}