com.qcloud.cos.model.ciModel.mediaInfo.MediaInfoSubtitle 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 MediaInfoSubtitle {
/**
* 该流的编号
*/
private String index;
/**
* 语言
*/
private String language;
public String getIndex() {
return index;
}
public void setIndex(String index) {
this.index = index;
}
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
@Override
public String toString() {
return "MediaInfoSubtitle{" +
"index='" + index + '\'' +
", language='" + language + '\'' +
'}';
}
}