All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalklive_1_0.models.CreateCloudFeedRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // 课程封面Url
    @NameInMap("coverUrl")
    public String coverUrl;

    // 课程简介
    @NameInMap("intro")
    public String intro;

    // 预计开始的时间戳(未来的时间点)
    @NameInMap("startTime")
    public Long startTime;

    // 课程标题
    @NameInMap("title")
    public String title;

    // 创建课程的主播id(staffId)
    @NameInMap("userId")
    public String userId;

    // 云导播课程资源的url
    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy