com.qcloud.cos.model.ciModel.common.MediaInputObject 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.common;
import com.thoughtworks.xstream.annotations.XStreamAlias;
/**
* 输入文件在cos中的位置
* 例 cos根目录下的1.txt文件 则object = 1.txt
* cos根目录下test文件夹中的1.txt文件 object = test/1.txt
*/
public class MediaInputObject {
@XStreamAlias("Object")
private String object;
@XStreamAlias("Url")
private String url;
public String getObject() {
return object;
}
public void setObject(String object) {
this.object = object;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("MediaInputObject{");
sb.append("object='").append(object).append('\'');
sb.append(", url='").append(url).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy