
com.aliyun.dingtalklive_1_0.models.UpdateLiveRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class UpdateLiveRequest extends TeaModel {
/**
* example:
* https://gw.alicdn.com/tfs/TB1thlYyAT2gK0jSZPcXXcKkpXa-1125-633.png
*/
@NameInMap("coverUrl")
public String coverUrl;
/**
* example:
* 测试直播简介
*/
@NameInMap("introduction")
public String introduction;
/**
* This parameter is required.
*
* example:
* 4d383876-1ff9-4b73-a057-a8f47b346ecb
*/
@NameInMap("liveId")
public String liveId;
/**
* example:
* 1659653648000
*/
@NameInMap("preEndTime")
public Long preEndTime;
/**
* example:
* 1659613648000
*/
@NameInMap("preStartTime")
public Long preStartTime;
/**
* example:
* 测试直播
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* DC7wZGOSueEEIGOf3WKwWgiEiE
*/
@NameInMap("unionId")
public String unionId;
public static UpdateLiveRequest build(java.util.Map map) throws Exception {
UpdateLiveRequest self = new UpdateLiveRequest();
return TeaModel.build(map, self);
}
public UpdateLiveRequest setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public UpdateLiveRequest setIntroduction(String introduction) {
this.introduction = introduction;
return this;
}
public String getIntroduction() {
return this.introduction;
}
public UpdateLiveRequest setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public UpdateLiveRequest setPreEndTime(Long preEndTime) {
this.preEndTime = preEndTime;
return this;
}
public Long getPreEndTime() {
return this.preEndTime;
}
public UpdateLiveRequest setPreStartTime(Long preStartTime) {
this.preStartTime = preStartTime;
return this;
}
public Long getPreStartTime() {
return this.preStartTime;
}
public UpdateLiveRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public UpdateLiveRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy