com.aliyun.dingtalklive_1_0.models.CreateCloudFeedRequest 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 CreateCloudFeedRequest extends TeaModel {
/**
* example:
* https://img.alicdn.com/tfs/TB1A7cBtYr1gK0jSZR0XXbP8XXa-750-422.png
*/
@NameInMap("coverUrl")
public String coverUrl;
/**
* example:
* 这是一场云导播课程
*/
@NameInMap("intro")
public String intro;
/**
* This parameter is required.
*
* example:
* 1615260061000
*/
@NameInMap("startTime")
public Long startTime;
/**
* This parameter is required.
*
* example:
* 课程一
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* 214675
*/
@NameInMap("userId")
public String userId;
/**
* This parameter is required.
*
* example:
* http/https:/xxx.mp4
*/
@NameInMap("videoUrl")
public String videoUrl;
public static CreateCloudFeedRequest build(java.util.Map map) throws Exception {
CreateCloudFeedRequest self = new CreateCloudFeedRequest();
return TeaModel.build(map, self);
}
public CreateCloudFeedRequest setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public CreateCloudFeedRequest setIntro(String intro) {
this.intro = intro;
return this;
}
public String getIntro() {
return this.intro;
}
public CreateCloudFeedRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public CreateCloudFeedRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public CreateCloudFeedRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public CreateCloudFeedRequest setVideoUrl(String videoUrl) {
this.videoUrl = videoUrl;
return this;
}
public String getVideoUrl() {
return this.videoUrl;
}
}