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

com.aliyun.dingtalkedu_1_0.models.StartCoursePrepareRequest 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.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class StartCoursePrepareRequest extends TeaModel {
    // 上课日期
    @NameInMap("courseDate")
    public String courseDate;

    // 课程组编号
    @NameInMap("courseGroupCode")
    public String courseGroupCode;

    // 设备id
    @NameInMap("deviceId")
    public String deviceId;

    // 拓展信息
    @NameInMap("ext")
    public String ext;

    // isv编号
    @NameInMap("isvCode")
    public String isvCode;

    // 封面url
    @NameInMap("liveCoverImage")
    public String liveCoverImage;

    // 课节信息
    @NameInMap("sectionIndex")
    public java.util.List sectionIndex;

    // 操作人
    @NameInMap("opUserId")
    public String opUserId;

    public static StartCoursePrepareRequest build(java.util.Map map) throws Exception {
        StartCoursePrepareRequest self = new StartCoursePrepareRequest();
        return TeaModel.build(map, self);
    }

    public StartCoursePrepareRequest setCourseDate(String courseDate) {
        this.courseDate = courseDate;
        return this;
    }
    public String getCourseDate() {
        return this.courseDate;
    }

    public StartCoursePrepareRequest setCourseGroupCode(String courseGroupCode) {
        this.courseGroupCode = courseGroupCode;
        return this;
    }
    public String getCourseGroupCode() {
        return this.courseGroupCode;
    }

    public StartCoursePrepareRequest setDeviceId(String deviceId) {
        this.deviceId = deviceId;
        return this;
    }
    public String getDeviceId() {
        return this.deviceId;
    }

    public StartCoursePrepareRequest setExt(String ext) {
        this.ext = ext;
        return this;
    }
    public String getExt() {
        return this.ext;
    }

    public StartCoursePrepareRequest setIsvCode(String isvCode) {
        this.isvCode = isvCode;
        return this;
    }
    public String getIsvCode() {
        return this.isvCode;
    }

    public StartCoursePrepareRequest setLiveCoverImage(String liveCoverImage) {
        this.liveCoverImage = liveCoverImage;
        return this;
    }
    public String getLiveCoverImage() {
        return this.liveCoverImage;
    }

    public StartCoursePrepareRequest setSectionIndex(java.util.List sectionIndex) {
        this.sectionIndex = sectionIndex;
        return this;
    }
    public java.util.List getSectionIndex() {
        return this.sectionIndex;
    }

    public StartCoursePrepareRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy