
com.aliyun.ice20201109.models.SubmitLiveRecordJobShrinkRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class SubmitLiveRecordJobShrinkRequest extends TeaModel {
/**
* 代表资源名称的资源属性字段
*/
@NameInMap("Name")
public String name;
/**
* 回调地址
*/
@NameInMap("NotifyUrl")
public String notifyUrl;
@NameInMap("RecordOutput")
public String recordOutputShrink;
@NameInMap("StreamInput")
public String streamInputShrink;
/**
* 录制模板ID
*/
@NameInMap("TemplateId")
public String templateId;
public static SubmitLiveRecordJobShrinkRequest build(java.util.Map map) throws Exception {
SubmitLiveRecordJobShrinkRequest self = new SubmitLiveRecordJobShrinkRequest();
return TeaModel.build(map, self);
}
public SubmitLiveRecordJobShrinkRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public SubmitLiveRecordJobShrinkRequest setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl;
return this;
}
public String getNotifyUrl() {
return this.notifyUrl;
}
public SubmitLiveRecordJobShrinkRequest setRecordOutputShrink(String recordOutputShrink) {
this.recordOutputShrink = recordOutputShrink;
return this;
}
public String getRecordOutputShrink() {
return this.recordOutputShrink;
}
public SubmitLiveRecordJobShrinkRequest setStreamInputShrink(String streamInputShrink) {
this.streamInputShrink = streamInputShrink;
return this;
}
public String getStreamInputShrink() {
return this.streamInputShrink;
}
public SubmitLiveRecordJobShrinkRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy