com.qcloud.cos.model.ciModel.job.QualityEstimate 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;
public class QualityEstimate {
private VqaPlusResult vqaPlusResult;
private String score;
public VqaPlusResult getVqaPlusResult() {
if (vqaPlusResult == null) {
vqaPlusResult = new VqaPlusResult();
}
return vqaPlusResult;
}
public void setVqaPlusResult(VqaPlusResult vqaPlusResult) {
this.vqaPlusResult = vqaPlusResult;
}
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy