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

com.aliyun.dingtalkresident_1_0.models.UpdateResideceGroupRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy