com.tencentcloudapi.vod.v20180717.models.CreateTranscodeTemplateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-vod Show documentation
Show all versions of tencentcloud-sdk-java-vod Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.vod.v20180717.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class CreateTranscodeTemplateRequest extends AbstractModel{
/**
* 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a、wav。其中,mp3、flac、ogg、m4a、wav 为纯音频文件。
*/
@SerializedName("Container")
@Expose
private String Container;
/**
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
*/
@SerializedName("SubAppId")
@Expose
private Long SubAppId;
/**
* 转码模板名称,长度限制:64 个字符。
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 模板描述信息,长度限制:256 个字符。
*/
@SerializedName("Comment")
@Expose
private String Comment;
/**
* 是否去除视频数据,可选值:
0:保留
1:去除
默认值:0。
*/
@SerializedName("RemoveVideo")
@Expose
private Long RemoveVideo;
/**
* 是否去除音频数据,可选值:
0:保留
1:去除
默认值:0。
*/
@SerializedName("RemoveAudio")
@Expose
private Long RemoveAudio;
/**
* 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
*/
@SerializedName("VideoTemplate")
@Expose
private VideoTemplateInfo VideoTemplate;
/**
* 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
*/
@SerializedName("AudioTemplate")
@Expose
private AudioTemplateInfo AudioTemplate;
/**
* 极速高清转码参数。
*/
@SerializedName("TEHDConfig")
@Expose
private TEHDConfig TEHDConfig;
/**
* 切片类型,当 Container 为 hls 时有效,可选值:
ts:ts 切片;
fmp4:fmp4 切片。
默认值:ts。
*/
@SerializedName("SegmentType")
@Expose
private String SegmentType;
/**
* Get 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a、wav。其中,mp3、flac、ogg、m4a、wav 为纯音频文件。
* @return Container 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a、wav。其中,mp3、flac、ogg、m4a、wav 为纯音频文件。
*/
public String getContainer() {
return this.Container;
}
/**
* Set 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a、wav。其中,mp3、flac、ogg、m4a、wav 为纯音频文件。
* @param Container 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a、wav。其中,mp3、flac、ogg、m4a、wav 为纯音频文件。
*/
public void setContainer(String Container) {
this.Container = Container;
}
/**
* Get 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
* @return SubAppId 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
*/
public Long getSubAppId() {
return this.SubAppId;
}
/**
* Set 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
* @param SubAppId 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
*/
public void setSubAppId(Long SubAppId) {
this.SubAppId = SubAppId;
}
/**
* Get 转码模板名称,长度限制:64 个字符。
* @return Name 转码模板名称,长度限制:64 个字符。
*/
public String getName() {
return this.Name;
}
/**
* Set 转码模板名称,长度限制:64 个字符。
* @param Name 转码模板名称,长度限制:64 个字符。
*/
public void setName(String Name) {
this.Name = Name;
}
/**
* Get 模板描述信息,长度限制:256 个字符。
* @return Comment 模板描述信息,长度限制:256 个字符。
*/
public String getComment() {
return this.Comment;
}
/**
* Set 模板描述信息,长度限制:256 个字符。
* @param Comment 模板描述信息,长度限制:256 个字符。
*/
public void setComment(String Comment) {
this.Comment = Comment;
}
/**
* Get 是否去除视频数据,可选值:
0:保留
1:去除
默认值:0。
* @return RemoveVideo 是否去除视频数据,可选值:
0:保留
1:去除
默认值:0。
*/
public Long getRemoveVideo() {
return this.RemoveVideo;
}
/**
* Set 是否去除视频数据,可选值:
0:保留
1:去除
默认值:0。
* @param RemoveVideo 是否去除视频数据,可选值:
0:保留
1:去除
默认值:0。
*/
public void setRemoveVideo(Long RemoveVideo) {
this.RemoveVideo = RemoveVideo;
}
/**
* Get 是否去除音频数据,可选值:
0:保留
1:去除
默认值:0。
* @return RemoveAudio 是否去除音频数据,可选值:
0:保留
1:去除
默认值:0。
*/
public Long getRemoveAudio() {
return this.RemoveAudio;
}
/**
* Set 是否去除音频数据,可选值:
0:保留
1:去除
默认值:0。
* @param RemoveAudio 是否去除音频数据,可选值:
0:保留
1:去除
默认值:0。
*/
public void setRemoveAudio(Long RemoveAudio) {
this.RemoveAudio = RemoveAudio;
}
/**
* Get 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
* @return VideoTemplate 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
*/
public VideoTemplateInfo getVideoTemplate() {
return this.VideoTemplate;
}
/**
* Set 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
* @param VideoTemplate 视频流配置参数,当 RemoveVideo 为 0,该字段必填。
*/
public void setVideoTemplate(VideoTemplateInfo VideoTemplate) {
this.VideoTemplate = VideoTemplate;
}
/**
* Get 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
* @return AudioTemplate 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
*/
public AudioTemplateInfo getAudioTemplate() {
return this.AudioTemplate;
}
/**
* Set 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
* @param AudioTemplate 音频流配置参数,当 RemoveAudio 为 0,该字段必填。
*/
public void setAudioTemplate(AudioTemplateInfo AudioTemplate) {
this.AudioTemplate = AudioTemplate;
}
/**
* Get 极速高清转码参数。
* @return TEHDConfig 极速高清转码参数。
*/
public TEHDConfig getTEHDConfig() {
return this.TEHDConfig;
}
/**
* Set 极速高清转码参数。
* @param TEHDConfig 极速高清转码参数。
*/
public void setTEHDConfig(TEHDConfig TEHDConfig) {
this.TEHDConfig = TEHDConfig;
}
/**
* Get 切片类型,当 Container 为 hls 时有效,可选值:
ts:ts 切片;
fmp4:fmp4 切片。
默认值:ts。
* @return SegmentType 切片类型,当 Container 为 hls 时有效,可选值:
ts:ts 切片;
fmp4:fmp4 切片。
默认值:ts。
*/
public String getSegmentType() {
return this.SegmentType;
}
/**
* Set 切片类型,当 Container 为 hls 时有效,可选值:
ts:ts 切片;
fmp4:fmp4 切片。
默认值:ts。
* @param SegmentType 切片类型,当 Container 为 hls 时有效,可选值:
ts:ts 切片;
fmp4:fmp4 切片。
默认值:ts。
*/
public void setSegmentType(String SegmentType) {
this.SegmentType = SegmentType;
}
public CreateTranscodeTemplateRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public CreateTranscodeTemplateRequest(CreateTranscodeTemplateRequest source) {
if (source.Container != null) {
this.Container = new String(source.Container);
}
if (source.SubAppId != null) {
this.SubAppId = new Long(source.SubAppId);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.Comment != null) {
this.Comment = new String(source.Comment);
}
if (source.RemoveVideo != null) {
this.RemoveVideo = new Long(source.RemoveVideo);
}
if (source.RemoveAudio != null) {
this.RemoveAudio = new Long(source.RemoveAudio);
}
if (source.VideoTemplate != null) {
this.VideoTemplate = new VideoTemplateInfo(source.VideoTemplate);
}
if (source.AudioTemplate != null) {
this.AudioTemplate = new AudioTemplateInfo(source.AudioTemplate);
}
if (source.TEHDConfig != null) {
this.TEHDConfig = new TEHDConfig(source.TEHDConfig);
}
if (source.SegmentType != null) {
this.SegmentType = new String(source.SegmentType);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Container", this.Container);
this.setParamSimple(map, prefix + "SubAppId", this.SubAppId);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "Comment", this.Comment);
this.setParamSimple(map, prefix + "RemoveVideo", this.RemoveVideo);
this.setParamSimple(map, prefix + "RemoveAudio", this.RemoveAudio);
this.setParamObj(map, prefix + "VideoTemplate.", this.VideoTemplate);
this.setParamObj(map, prefix + "AudioTemplate.", this.AudioTemplate);
this.setParamObj(map, prefix + "TEHDConfig.", this.TEHDConfig);
this.setParamSimple(map, prefix + "SegmentType", this.SegmentType);
}
}