![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.ice20201109.models.CreateLiveTranscodeTemplateResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class CreateLiveTranscodeTemplateResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("TemplateId")
public String templateId;
public static CreateLiveTranscodeTemplateResponseBody build(java.util.Map map) throws Exception {
CreateLiveTranscodeTemplateResponseBody self = new CreateLiveTranscodeTemplateResponseBody();
return TeaModel.build(map, self);
}
public CreateLiveTranscodeTemplateResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateLiveTranscodeTemplateResponseBody setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy