com.qcloud.cos.model.ciModel.common.MediaOutputObject 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;
/**
* 媒体处理 输出信息实体
*/
public class MediaOutputObject {
private String region;
private String bucket;
/**
* 对象在桶中的地址
*/
private String object;
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
public String getBucket() {
return bucket;
}
public void setBucket(String bucket) {
this.bucket = bucket;
}
public String getObject() {
return object;
}
public void setObject(String object) {
this.object = object;
}
@Override
public String toString() {
return "MediaOutputObject{" +
"region='" + region + '\'' +
", bucket='" + bucket + '\'' +
", object='" + object + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy