com.qcloud.cos.model.ciModel.job.DocJobResponse 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;
import com.qcloud.cos.internal.CIServiceRequest;
/**
* 文档预览任务响应实体
*/
public class DocJobResponse extends CIServiceRequest {
/**
* 文档预览任务对象
*/
private DocJobDetail jobsDetail;
private String nonExistJobIds;
public DocJobDetail getJobsDetail() {
if (jobsDetail == null) {
jobsDetail = new DocJobDetail();
}
return jobsDetail;
}
public void setJobsDetail(DocJobDetail jobsDetail) {
this.jobsDetail = jobsDetail;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("DocJobResponse{");
sb.append("jobsDetail=").append(jobsDetail);
sb.append(",nonExistJobIds=").append(nonExistJobIds);
sb.append('}');
return sb.toString();
}
public String getNonExistJobIds() {
return nonExistJobIds;
}
public void setNonExistJobIds(String nonExistJobIds) {
this.nonExistJobIds = nonExistJobIds;
}
}