com.aliyun.dingtalkedu_1_0.models.StartCoursePrepareRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class StartCoursePrepareRequest extends TeaModel {
/**
* example:
* 2021-11-16
*/
@NameInMap("courseDate")
public String courseDate;
/**
* example:
* course1
*/
@NameInMap("courseGroupCode")
public String courseGroupCode;
/**
* example:
* device1
*/
@NameInMap("deviceId")
public String deviceId;
/**
* example:
* extNumber
*/
@NameInMap("ext")
public String ext;
/**
* example:
* DDISV
*/
@NameInMap("isvCode")
public String isvCode;
/**
* example:
* ""
*/
@NameInMap("liveCoverImage")
public String liveCoverImage;
@NameInMap("sectionIndex")
public java.util.List sectionIndex;
/**
* example:
* manger1234
*/
@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;
}
}