com.qingxun.javasdkapi.response.OcrImageUploadResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-api Show documentation
Show all versions of java-sdk-api Show documentation
openapi SDK for Java
Copyright © 2023 杭州轻寻科技
All rights reserved.
版权所有 (C)杭州轻寻科技
http://open.qingxun.com
The newest version!
package com.qingxun.javasdkapi.response;
import java.util.List;
/**
* OCR上传响应参数
*/
public class OcrImageUploadResponse extends BaseResponse {
private Integer wordsResultNum;
private List wordsResult;
public static class WordsResult {
private String words;
private Location location;
public static class Location {
private int top;
private int left;
private int width;
private int height;
public int getTop() {
return top;
}
public void setTop(int top) {
this.top = top;
}
public int getLeft() {
return left;
}
public void setLeft(int left) {
this.left = left;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
}
public String getWords() {
return words;
}
public void setWords(String words) {
this.words = words;
}
public Location getLocation() {
return location;
}
public void setLocation(Location location) {
this.location = location;
}
}
public Integer getWordsResultNum() {
return wordsResultNum;
}
public void setWordsResultNum(Integer wordsResultNum) {
this.wordsResultNum = wordsResultNum;
}
public List getWordsResult() {
return wordsResult;
}
public void setWordsResult(List wordsResult) {
this.wordsResult = wordsResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy