com.qcloud.cos.model.ciModel.job.StreamData 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;
public class StreamData {
private VideoTagData data;
private String subErrCode;
private String subErrMsg;
public VideoTagData getData() {
return data;
}
public void setData(VideoTagData data) {
this.data = data;
}
public String getSubErrCode() {
return subErrCode;
}
public void setSubErrCode(String subErrCode) {
this.subErrCode = subErrCode;
}
public String getSubErrMsg() {
return subErrMsg;
}
public void setSubErrMsg(String subErrMsg) {
this.subErrMsg = subErrMsg;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy