com.aliyun.dingtalklive_1_0.models.UpdateLiveFeedRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class UpdateLiveFeedRequest extends TeaModel {
/**
* example:
* http:xxx.png
*/
@NameInMap("coverUrl")
public String coverUrl;
/**
* example:
* 简介
*/
@NameInMap("introduction")
public String introduction;
/**
* example:
* 1617436058000
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 标题
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* 1206186351746728
*/
@NameInMap("userId")
public String userId;
public static UpdateLiveFeedRequest build(java.util.Map map) throws Exception {
UpdateLiveFeedRequest self = new UpdateLiveFeedRequest();
return TeaModel.build(map, self);
}
public UpdateLiveFeedRequest setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public UpdateLiveFeedRequest setIntroduction(String introduction) {
this.introduction = introduction;
return this;
}
public String getIntroduction() {
return this.introduction;
}
public UpdateLiveFeedRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public UpdateLiveFeedRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public UpdateLiveFeedRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}