
com.aliyun.dingtalkedu_1_0.models.BatchCreateStudentClassRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class BatchCreateStudentClassRequest extends TeaModel {
/**
* example:
* classxxx
*/
@NameInMap("classId")
public String classId;
/**
* example:
* 一年级一班
*/
@NameInMap("className")
public String className;
/**
* example:
* 1
*/
@NameInMap("classType")
public Integer classType;
/**
* example:
* dingxxx
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* ISV_XXX
*/
@NameInMap("isvCode")
public String isvCode;
@NameInMap("studentList")
public java.util.List studentList;
public static BatchCreateStudentClassRequest build(java.util.Map map) throws Exception {
BatchCreateStudentClassRequest self = new BatchCreateStudentClassRequest();
return TeaModel.build(map, self);
}
public BatchCreateStudentClassRequest setClassId(String classId) {
this.classId = classId;
return this;
}
public String getClassId() {
return this.classId;
}
public BatchCreateStudentClassRequest setClassName(String className) {
this.className = className;
return this;
}
public String getClassName() {
return this.className;
}
public BatchCreateStudentClassRequest setClassType(Integer classType) {
this.classType = classType;
return this;
}
public Integer getClassType() {
return this.classType;
}
public BatchCreateStudentClassRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public BatchCreateStudentClassRequest setIsvCode(String isvCode) {
this.isvCode = isvCode;
return this;
}
public String getIsvCode() {
return this.isvCode;
}
public BatchCreateStudentClassRequest setStudentList(java.util.List studentList) {
this.studentList = studentList;
return this;
}
public java.util.List getStudentList() {
return this.studentList;
}
public static class BatchCreateStudentClassRequestStudentList extends TeaModel {
/**
* example:
* {""}
*/
@NameInMap("attributes")
public String attributes;
/**
* example:
* studentxxx
*/
@NameInMap("studentUserId")
public String studentUserId;
public static BatchCreateStudentClassRequestStudentList build(java.util.Map map) throws Exception {
BatchCreateStudentClassRequestStudentList self = new BatchCreateStudentClassRequestStudentList();
return TeaModel.build(map, self);
}
public BatchCreateStudentClassRequestStudentList setAttributes(String attributes) {
this.attributes = attributes;
return this;
}
public String getAttributes() {
return this.attributes;
}
public BatchCreateStudentClassRequestStudentList setStudentUserId(String studentUserId) {
this.studentUserId = studentUserId;
return this;
}
public String getStudentUserId() {
return this.studentUserId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy