All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.QueryStudentClassRequest 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 QueryStudentClassRequest 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("studentUserIds") public java.util.List studentUserIds; public static QueryStudentClassRequest build(java.util.Map map) throws Exception { QueryStudentClassRequest self = new QueryStudentClassRequest(); return TeaModel.build(map, self); } public QueryStudentClassRequest setClassId(String classId) { this.classId = classId; return this; } public String getClassId() { return this.classId; } public QueryStudentClassRequest setClassType(Integer classType) { this.classType = classType; return this; } public Integer getClassType() { return this.classType; } public QueryStudentClassRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public QueryStudentClassRequest setIsvCode(String isvCode) { this.isvCode = isvCode; return this; } public String getIsvCode() { return this.isvCode; } public QueryStudentClassRequest setStudentUserIds(java.util.List studentUserIds) { this.studentUserIds = studentUserIds; return this; } public java.util.List getStudentUserIds() { return this.studentUserIds; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy