com.qcloud.cos.model.ciModel.mediaInfo.MediaInfoResponse 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.mediaInfo;
/**
* MediaInfo 媒体信息返回包装类 详情见:https://cloud.tencent.com/document/product/460/38935
*/
public class MediaInfoResponse {
/**
* 媒体信息实体对象
*/
private MediaInfoObjcet mediaInfo;
public MediaInfoObjcet getMediaInfo() {
if (mediaInfo==null){
mediaInfo = new MediaInfoObjcet();
}
return mediaInfo;
}
public void setMediaInfo(MediaInfoObjcet mediaInfo) {
this.mediaInfo = mediaInfo;
}
@Override
public String toString() {
return "MediaInfoResponse{" +
"mediaInfo=" + mediaInfo +
'}';
}
}