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

com.aliyun.dingtalkedu_1_0.models.DeleteUniversityTeacherRequest 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 DeleteUniversityTeacherRequest extends TeaModel {
    // 班级id
    @NameInMap("classId")
    public Long classId;

    // opUserId
    @NameInMap("opUserId")
    public String opUserId;

    // 角色
    @NameInMap("role")
    public String role;

    // 教师用户ID
    @NameInMap("teacherUserId")
    public String teacherUserId;

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

    public DeleteUniversityTeacherRequest setClassId(Long classId) {
        this.classId = classId;
        return this;
    }
    public Long getClassId() {
        return this.classId;
    }

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

    public DeleteUniversityTeacherRequest setRole(String role) {
        this.role = role;
        return this;
    }
    public String getRole() {
        return this.role;
    }

    public DeleteUniversityTeacherRequest setTeacherUserId(String teacherUserId) {
        this.teacherUserId = teacherUserId;
        return this;
    }
    public String getTeacherUserId() {
        return this.teacherUserId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy