com.qcloud.cos.model.ciModel.auditing.OcrResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
package com.qcloud.cos.model.ciModel.auditing;
public class OcrResults {
private String text;
private String keywords;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getKeywords() {
return keywords;
}
public void setKeywords(String keywords) {
this.keywords = keywords;
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("OcrResults{");
sb.append("text='").append(text).append('\'');
sb.append(", keywords='").append(keywords).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy