![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.EduTeacherListResponseBody 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 EduTeacherListResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("result")
public EduTeacherListResponseBodyResult result;
public static EduTeacherListResponseBody build(java.util.Map map) throws Exception {
EduTeacherListResponseBody self = new EduTeacherListResponseBody();
return TeaModel.build(map, self);
}
public EduTeacherListResponseBody setResult(EduTeacherListResponseBodyResult result) {
this.result = result;
return this;
}
public EduTeacherListResponseBodyResult getResult() {
return this.result;
}
public static class EduTeacherListResponseBodyResultTeacherDetails extends TeaModel {
/**
* This parameter is required.
*
* example:
* 张三
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* teacher
*/
@NameInMap("role")
public String role;
/**
* This parameter is required.
*
* example:
* 人员的unionId。
*/
@NameInMap("unionId")
public String unionId;
/**
* This parameter is required.
*
* example:
* 77621233
*/
@NameInMap("userId")
public String userId;
public static EduTeacherListResponseBodyResultTeacherDetails build(java.util.Map map) throws Exception {
EduTeacherListResponseBodyResultTeacherDetails self = new EduTeacherListResponseBodyResultTeacherDetails();
return TeaModel.build(map, self);
}
public EduTeacherListResponseBodyResultTeacherDetails setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public EduTeacherListResponseBodyResultTeacherDetails setRole(String role) {
this.role = role;
return this;
}
public String getRole() {
return this.role;
}
public EduTeacherListResponseBodyResultTeacherDetails setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
public EduTeacherListResponseBodyResultTeacherDetails setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class EduTeacherListResponseBodyResult extends TeaModel {
/**
* This parameter is required.
*
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
@NameInMap("teacherDetails")
public java.util.List teacherDetails;
public static EduTeacherListResponseBodyResult build(java.util.Map map) throws Exception {
EduTeacherListResponseBodyResult self = new EduTeacherListResponseBodyResult();
return TeaModel.build(map, self);
}
public EduTeacherListResponseBodyResult setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public EduTeacherListResponseBodyResult setTeacherDetails(java.util.List teacherDetails) {
this.teacherDetails = teacherDetails;
return this;
}
public java.util.List getTeacherDetails() {
return this.teacherDetails;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy