com.aliyun.dingtalkedu_1_0.models.DeleteUniversityStudentRequest 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 DeleteUniversityStudentRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 76781
*/
@NameInMap("classId")
public Long classId;
/**
* This parameter is required.
*
* example:
* manger1234
*/
@NameInMap("opUserId")
public String opUserId;
/**
* This parameter is required.
*
* example:
* uu1234
*/
@NameInMap("studentUserId")
public String studentUserId;
public static DeleteUniversityStudentRequest build(java.util.Map map) throws Exception {
DeleteUniversityStudentRequest self = new DeleteUniversityStudentRequest();
return TeaModel.build(map, self);
}
public DeleteUniversityStudentRequest setClassId(Long classId) {
this.classId = classId;
return this;
}
public Long getClassId() {
return this.classId;
}
public DeleteUniversityStudentRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
public DeleteUniversityStudentRequest setStudentUserId(String studentUserId) {
this.studentUserId = studentUserId;
return this;
}
public String getStudentUserId() {
return this.studentUserId;
}
}