com.tencentcloudapi.vod.v20180717.models.AdaptiveStreamTemplate Maven / Gradle / Ivy
/*
* 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 AdaptiveStreamTemplate extends AbstractModel{
/**
* 视频参数信息。
*/
@SerializedName("Video")
@Expose
private VideoTemplateInfo Video;
/**
* 音频参数信息。
*/
@SerializedName("Audio")
@Expose
private AudioTemplateInfo Audio;
/**
* 是否移除音频流,取值范围:
0:否,
1:是。
*/
@SerializedName("RemoveAudio")
@Expose
private Long RemoveAudio;
/**
* 是否移除视频流,取值范围:
0:否,
1:是。
*/
@SerializedName("RemoveVideo")
@Expose
private Long RemoveVideo;
/**
* 极速高清转码参数。
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("TEHDConfig")
@Expose
private TEHDConfig TEHDConfig;
/**
* Get 视频参数信息。
* @return Video 视频参数信息。
*/
public VideoTemplateInfo getVideo() {
return this.Video;
}
/**
* Set 视频参数信息。
* @param Video 视频参数信息。
*/
public void setVideo(VideoTemplateInfo Video) {
this.Video = Video;
}
/**
* Get 音频参数信息。
* @return Audio 音频参数信息。
*/
public AudioTemplateInfo getAudio() {
return this.Audio;
}
/**
* Set 音频参数信息。
* @param Audio 音频参数信息。
*/
public void setAudio(AudioTemplateInfo Audio) {
this.Audio = Audio;
}
/**
* Get 是否移除音频流,取值范围:
0:否,
1:是。
* @return RemoveAudio 是否移除音频流,取值范围:
0:否,
1:是。
*/
public Long getRemoveAudio() {
return this.RemoveAudio;
}
/**
* Set 是否移除音频流,取值范围:
0:否,
1:是。
* @param RemoveAudio 是否移除音频流,取值范围:
0:否,
1:是。
*/
public void setRemoveAudio(Long RemoveAudio) {
this.RemoveAudio = RemoveAudio;
}
/**
* Get 是否移除视频流,取值范围:
0:否,
1:是。
* @return RemoveVideo 是否移除视频流,取值范围:
0:否,
1:是。
*/
public Long getRemoveVideo() {
return this.RemoveVideo;
}
/**
* Set 是否移除视频流,取值范围:
0:否,
1:是。
* @param RemoveVideo 是否移除视频流,取值范围:
0:否,
1:是。
*/
public void setRemoveVideo(Long RemoveVideo) {
this.RemoveVideo = RemoveVideo;
}
/**
* Get 极速高清转码参数。
注意:此字段可能返回 null,表示取不到有效值。
* @return TEHDConfig 极速高清转码参数。
注意:此字段可能返回 null,表示取不到有效值。
*/
public TEHDConfig getTEHDConfig() {
return this.TEHDConfig;
}
/**
* Set 极速高清转码参数。
注意:此字段可能返回 null,表示取不到有效值。
* @param TEHDConfig 极速高清转码参数。
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setTEHDConfig(TEHDConfig TEHDConfig) {
this.TEHDConfig = TEHDConfig;
}
public AdaptiveStreamTemplate() {
}
/**
* 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 AdaptiveStreamTemplate(AdaptiveStreamTemplate source) {
if (source.Video != null) {
this.Video = new VideoTemplateInfo(source.Video);
}
if (source.Audio != null) {
this.Audio = new AudioTemplateInfo(source.Audio);
}
if (source.RemoveAudio != null) {
this.RemoveAudio = new Long(source.RemoveAudio);
}
if (source.RemoveVideo != null) {
this.RemoveVideo = new Long(source.RemoveVideo);
}
if (source.TEHDConfig != null) {
this.TEHDConfig = new TEHDConfig(source.TEHDConfig);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamObj(map, prefix + "Video.", this.Video);
this.setParamObj(map, prefix + "Audio.", this.Audio);
this.setParamSimple(map, prefix + "RemoveAudio", this.RemoveAudio);
this.setParamSimple(map, prefix + "RemoveVideo", this.RemoveVideo);
this.setParamObj(map, prefix + "TEHDConfig.", this.TEHDConfig);
}
}