com.qcloud.cos.model.ciModel.job.MediaJobResponse 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.model.CiServiceResult;
/**
* 媒体处理 任务响应实体 https://cloud.tencent.com/document/product/460/48234
*/
public class MediaJobResponse extends CiServiceResult {
private MediaJobObject jobsDetail;
public MediaJobObject getJobsDetail() {
if (jobsDetail==null){
jobsDetail = new MediaJobObject();
}
return jobsDetail;
}
@Override
public String toString() {
return "MediaJobResponse{" +
"jobsDetail=" + jobsDetail +
'}';
}
}