![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.QueryUniversityCourseGroupRequest 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 QueryUniversityCourseGroupRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* GS10001
*/
@NameInMap("courseGroupCode")
public String courseGroupCode;
/**
* This parameter is required.
*
* example:
* manger1234
*/
@NameInMap("opUserId")
public String opUserId;
public static QueryUniversityCourseGroupRequest build(java.util.Map map) throws Exception {
QueryUniversityCourseGroupRequest self = new QueryUniversityCourseGroupRequest();
return TeaModel.build(map, self);
}
public QueryUniversityCourseGroupRequest setCourseGroupCode(String courseGroupCode) {
this.courseGroupCode = courseGroupCode;
return this;
}
public String getCourseGroupCode() {
return this.courseGroupCode;
}
public QueryUniversityCourseGroupRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy