com.qcloud.cos.model.ciModel.job.MediaAnimationObject 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.thoughtworks.xstream.annotations.XStreamAlias;
/**
* 媒体处理 动图任务实体 https://cloud.tencent.com/document/product/460/48217
*/
public class MediaAnimationObject {
@XStreamAlias("Container")
private MediaContainerObject container;
@XStreamAlias("Video")
private MediaVideoObject video;
@XStreamAlias("TimeInterval")
private MediaTimeIntervalObject timeInterval;
public MediaContainerObject getContainer() {
if (container==null){
container= new MediaContainerObject();
}
return container;
}
public void setContainer(MediaContainerObject container) {
this.container = container;
}
public MediaVideoObject getVideo() {
if (video==null){
video= new MediaVideoObject();
}
return video;
}
public void setVideo(MediaVideoObject video) {
this.video = video;
}
public MediaTimeIntervalObject getTimeInterval() {
if (timeInterval==null){
timeInterval= new MediaTimeIntervalObject();
}
return timeInterval;
}
public void setTimeInterval(MediaTimeIntervalObject timeInterval) {
this.timeInterval = timeInterval;
}
@Override
public String toString() {
return "MediaAnimationObject{" +
"container=" + container +
", video=" + video +
", timeInterval=" + timeInterval +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy