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

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

There is a newer version: 2.1.30
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 DeleteUniversityCourseGroupRequest extends TeaModel {
    // 课程组编码
    @NameInMap("courseGroupCode")
    public String courseGroupCode;

    // 操作人
    @NameInMap("opUserId")
    public String opUserId;

    public static DeleteUniversityCourseGroupRequest build(java.util.Map map) throws Exception {
        DeleteUniversityCourseGroupRequest self = new DeleteUniversityCourseGroupRequest();
        return TeaModel.build(map, self);
    }

    public DeleteUniversityCourseGroupRequest setCourseGroupCode(String courseGroupCode) {
        this.courseGroupCode = courseGroupCode;
        return this;
    }
    public String getCourseGroupCode() {
        return this.courseGroupCode;
    }

    public DeleteUniversityCourseGroupRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy