
com.iyzipay.google.cloud.vision.model.Page 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 Page {
private TextProperty property;
private Double width;
private Double height;
private List blocks;
public TextProperty getProperty() {
return property;
}
public void setProperty(TextProperty property) {
this.property = property;
}
public Double getWidth() {
return width;
}
public void setWidth(Double width) {
this.width = width;
}
public Double getHeight() {
return height;
}
public void setHeight(Double height) {
this.height = height;
}
public List getBlocks() {
return blocks;
}
public void setBlocks(List blocks) {
this.blocks = blocks;
}
}