
com.aliyun.dingtalkedu_1_0.models.QueryStudentClassResponseBody 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 QueryStudentClassResponseBody extends TeaModel {
@NameInMap("result")
public QueryStudentClassResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static QueryStudentClassResponseBody build(java.util.Map map) throws Exception {
QueryStudentClassResponseBody self = new QueryStudentClassResponseBody();
return TeaModel.build(map, self);
}
public QueryStudentClassResponseBody setResult(QueryStudentClassResponseBodyResult result) {
this.result = result;
return this;
}
public QueryStudentClassResponseBodyResult getResult() {
return this.result;
}
public QueryStudentClassResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class QueryStudentClassResponseBodyResultStudentList extends TeaModel {
/**
* example:
* {""}
*/
@NameInMap("attributes")
public String attributes;
/**
* example:
* 小明
*/
@NameInMap("studentName")
public String studentName;
/**
* example:
* studentxxx
*/
@NameInMap("studentUserId")
public String studentUserId;
public static QueryStudentClassResponseBodyResultStudentList build(java.util.Map map) throws Exception {
QueryStudentClassResponseBodyResultStudentList self = new QueryStudentClassResponseBodyResultStudentList();
return TeaModel.build(map, self);
}
public QueryStudentClassResponseBodyResultStudentList setAttributes(String attributes) {
this.attributes = attributes;
return this;
}
public String getAttributes() {
return this.attributes;
}
public QueryStudentClassResponseBodyResultStudentList setStudentName(String studentName) {
this.studentName = studentName;
return this;
}
public String getStudentName() {
return this.studentName;
}
public QueryStudentClassResponseBodyResultStudentList setStudentUserId(String studentUserId) {
this.studentUserId = studentUserId;
return this;
}
public String getStudentUserId() {
return this.studentUserId;
}
}
public static class QueryStudentClassResponseBodyResult extends TeaModel {
/**
* example:
* classIdxxx
*/
@NameInMap("classId")
public String classId;
/**
* 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 QueryStudentClassResponseBodyResult build(java.util.Map map) throws Exception {
QueryStudentClassResponseBodyResult self = new QueryStudentClassResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryStudentClassResponseBodyResult setClassId(String classId) {
this.classId = classId;
return this;
}
public String getClassId() {
return this.classId;
}
public QueryStudentClassResponseBodyResult setClassType(Integer classType) {
this.classType = classType;
return this;
}
public Integer getClassType() {
return this.classType;
}
public QueryStudentClassResponseBodyResult setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public QueryStudentClassResponseBodyResult setIsvCode(String isvCode) {
this.isvCode = isvCode;
return this;
}
public String getIsvCode() {
return this.isvCode;
}
public QueryStudentClassResponseBodyResult setStudentList(java.util.List studentList) {
this.studentList = studentList;
return this;
}
public java.util.List getStudentList() {
return this.studentList;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy