All Downloads are FREE. Search and download functionalities are using the official Maven repository.

panda.ex.gcloud.vision.images.TextAnnotation Maven / Gradle / Ivy

Go to download

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 TextAnnotation {
	private List pages;
	private String text;

	public List getPages() {
		return pages;
	}
	public void setPages(List pages) {
		this.pages = pages;
	}
	public String getText() {
		return text;
	}
	public void setText(String text) {
		this.text = text;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy