
com.aliyun.dingtalkresident_1_0.models.RemoveResidentUserRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class RemoveResidentUserRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("departmentId")
public Long departmentId;
/**
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("userId")
public String userId;
public static RemoveResidentUserRequest build(java.util.Map map) throws Exception {
RemoveResidentUserRequest self = new RemoveResidentUserRequest();
return TeaModel.build(map, self);
}
public RemoveResidentUserRequest setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
return this;
}
public Long getDepartmentId() {
return this.departmentId;
}
public RemoveResidentUserRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy