panda.ex.gcloud.vision.images.AnnotateApiRequest 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.ArrayList;
import java.util.List;
public class AnnotateApiRequest {
private List requests;
public List getRequests() {
return requests;
}
public void setRequests(List requests) {
this.requests = requests;
}
public void addRequest(AnnotateImageRequest request) {
if (requests == null) {
requests = new ArrayList();
}
requests.add(request);
}
}