com.aliyun.dingtalkedu_1_0.models.SaveClassLearningDataRequest 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 SaveClassLearningDataRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("assignNum")
public Integer assignNum;
/**
* This parameter is required.
*/
@NameInMap("assignStudentUserIds")
public java.util.List assignStudentUserIds;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* HOMEWORK
*/
@NameInMap("bizType")
public String bizType;
/**
* This parameter is required.
*
* example:
* dingxxxxxxxxxxxxxxxxx
*/
@NameInMap("corpId")
public String corpId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* .jpeg
*/
@NameInMap("fileSuffix")
public String fileSuffix;
/**
* This parameter is required.
*
* example:
* 1672502400000
*/
@NameInMap("generatedTime")
public Long generatedTime;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("questionNum")
public Integer questionNum;
/**
* example:
* 1
*/
@NameInMap("questionPictureNum")
public Integer questionPictureNum;
/**
* example:
* 1
*/
@NameInMap("standardAnswerPictureNum")
public Integer standardAnswerPictureNum;
/**
* This parameter is required.
*
* example:
* shuxue
*/
@NameInMap("subjectCode")
public String subjectCode;
/**
* This parameter is required.
*
* example:
* 0123456
*/
@NameInMap("teacherUserId")
public String teacherUserId;
public static SaveClassLearningDataRequest build(java.util.Map map) throws Exception {
SaveClassLearningDataRequest self = new SaveClassLearningDataRequest();
return TeaModel.build(map, self);
}
public SaveClassLearningDataRequest setAssignNum(Integer assignNum) {
this.assignNum = assignNum;
return this;
}
public Integer getAssignNum() {
return this.assignNum;
}
public SaveClassLearningDataRequest setAssignStudentUserIds(java.util.List assignStudentUserIds) {
this.assignStudentUserIds = assignStudentUserIds;
return this;
}
public java.util.List getAssignStudentUserIds() {
return this.assignStudentUserIds;
}
public SaveClassLearningDataRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public SaveClassLearningDataRequest setBizType(String bizType) {
this.bizType = bizType;
return this;
}
public String getBizType() {
return this.bizType;
}
public SaveClassLearningDataRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public SaveClassLearningDataRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public SaveClassLearningDataRequest setFileSuffix(String fileSuffix) {
this.fileSuffix = fileSuffix;
return this;
}
public String getFileSuffix() {
return this.fileSuffix;
}
public SaveClassLearningDataRequest setGeneratedTime(Long generatedTime) {
this.generatedTime = generatedTime;
return this;
}
public Long getGeneratedTime() {
return this.generatedTime;
}
public SaveClassLearningDataRequest setQuestionNum(Integer questionNum) {
this.questionNum = questionNum;
return this;
}
public Integer getQuestionNum() {
return this.questionNum;
}
public SaveClassLearningDataRequest setQuestionPictureNum(Integer questionPictureNum) {
this.questionPictureNum = questionPictureNum;
return this;
}
public Integer getQuestionPictureNum() {
return this.questionPictureNum;
}
public SaveClassLearningDataRequest setStandardAnswerPictureNum(Integer standardAnswerPictureNum) {
this.standardAnswerPictureNum = standardAnswerPictureNum;
return this;
}
public Integer getStandardAnswerPictureNum() {
return this.standardAnswerPictureNum;
}
public SaveClassLearningDataRequest setSubjectCode(String subjectCode) {
this.subjectCode = subjectCode;
return this;
}
public String getSubjectCode() {
return this.subjectCode;
}
public SaveClassLearningDataRequest setTeacherUserId(String teacherUserId) {
this.teacherUserId = teacherUserId;
return this;
}
public String getTeacherUserId() {
return this.teacherUserId;
}
}