com.qcloud.cos.model.ciModel.job.v2.BodyRecognitionResult 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.job.v2;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import java.util.List;
public class BodyRecognitionResult {
/**
* 混合置信度
*/
@XStreamAlias("FusionScore")
private String fusionScore;
/**
* 识别结果
*/
@XStreamImplicit(itemFieldName = "ResultDetails")
private List resultDetails;
public String getFusionScore() {
return fusionScore;
}
public void setFusionScore(String fusionScore) {
this.fusionScore = fusionScore;
}
public List getResultDetails() {
return resultDetails;
}
public void setResultDetails(List resultDetails) {
this.resultDetails = resultDetails;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy