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

com.aliyun.dingtalkedu_1_0.models.QueryUniversityCourseGroupRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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