com.qcloud.cos.model.ciModel.workflow.MediaOperation 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.workflow;
import com.qcloud.cos.model.ciModel.common.MediaOutputObject;
public class MediaOperation {
private String templateId;
private MediaOutputObject output;
public MediaOutputObject getOutput() {
if (output == null){
output = new MediaOutputObject();
}
return output;
}
public void setOutput(MediaOutputObject output) {
this.output = output;
}
public String getTemplateId() {
return templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
@Override
public String toString() {
return "MediaOperation{" +
"templateId='" + templateId + '\'' +
", output=" + output +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy