com.aliyun.dingtalkresident_1_0.models.UpdateResideceGroupRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class UpdateResideceGroupRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 12345
*/
@NameInMap("departmentId")
public Long departmentId;
/**
* This parameter is required.
*
* example:
* 第一网格组
*/
@NameInMap("departmentName")
public String departmentName;
/**
* example:
* 1234
*/
@NameInMap("managerUserId")
public String managerUserId;
public static UpdateResideceGroupRequest build(java.util.Map map) throws Exception {
UpdateResideceGroupRequest self = new UpdateResideceGroupRequest();
return TeaModel.build(map, self);
}
public UpdateResideceGroupRequest setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
return this;
}
public Long getDepartmentId() {
return this.departmentId;
}
public UpdateResideceGroupRequest setDepartmentName(String departmentName) {
this.departmentName = departmentName;
return this;
}
public String getDepartmentName() {
return this.departmentName;
}
public UpdateResideceGroupRequest setManagerUserId(String managerUserId) {
this.managerUserId = managerUserId;
return this;
}
public String getManagerUserId() {
return this.managerUserId;
}
}