com.aliyun.dingtalkedu_1_0.models.DeleteCollegeAlumniDeptRequest 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 DeleteCollegeAlumniDeptRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("deptId")
public Long deptId;
/**
* This parameter is required.
*/
@NameInMap("operator")
public String operator;
public static DeleteCollegeAlumniDeptRequest build(java.util.Map map) throws Exception {
DeleteCollegeAlumniDeptRequest self = new DeleteCollegeAlumniDeptRequest();
return TeaModel.build(map, self);
}
public DeleteCollegeAlumniDeptRequest setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public DeleteCollegeAlumniDeptRequest setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
}