com.tencentcloudapi.mps.v20190612.models.ModifyLiveRecordTemplateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-mps Show documentation
Show all versions of tencentcloud-sdk-java-mps 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.mps.v20190612.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ModifyLiveRecordTemplateRequest extends AbstractModel {
/**
* 录制模板唯一标识。
*/
@SerializedName("Definition")
@Expose
private Long Definition;
/**
* HLS 配置参数
*/
@SerializedName("HLSConfigure")
@Expose
private HLSConfigureInfo HLSConfigure;
/**
* 录制模板名称,长度限制:64 个字符。
*/
@SerializedName("Name")
@Expose
private String Name;
/**
* 模板描述信息,长度限制:256 个字符。
*/
@SerializedName("Comment")
@Expose
private String Comment;
/**
* Get 录制模板唯一标识。
* @return Definition 录制模板唯一标识。
*/
public Long getDefinition() {
return this.Definition;
}
/**
* Set 录制模板唯一标识。
* @param Definition 录制模板唯一标识。
*/
public void setDefinition(Long Definition) {
this.Definition = Definition;
}
/**
* Get HLS 配置参数
* @return HLSConfigure HLS 配置参数
*/
public HLSConfigureInfo getHLSConfigure() {
return this.HLSConfigure;
}
/**
* Set HLS 配置参数
* @param HLSConfigure HLS 配置参数
*/
public void setHLSConfigure(HLSConfigureInfo HLSConfigure) {
this.HLSConfigure = HLSConfigure;
}
/**
* 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;
}
public ModifyLiveRecordTemplateRequest() {
}
/**
* 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 ModifyLiveRecordTemplateRequest(ModifyLiveRecordTemplateRequest source) {
if (source.Definition != null) {
this.Definition = new Long(source.Definition);
}
if (source.HLSConfigure != null) {
this.HLSConfigure = new HLSConfigureInfo(source.HLSConfigure);
}
if (source.Name != null) {
this.Name = new String(source.Name);
}
if (source.Comment != null) {
this.Comment = new String(source.Comment);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Definition", this.Definition);
this.setParamObj(map, prefix + "HLSConfigure.", this.HLSConfigure);
this.setParamSimple(map, prefix + "Name", this.Name);
this.setParamSimple(map, prefix + "Comment", this.Comment);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy