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

com.aliyun.dingtalkresident_1_0.models.UpdateResideceGroupRequest 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 UpdateResideceGroupRequest extends TeaModel {
    // 组id
    @NameInMap("departmentId")
    public Long departmentId;

    // 组名字
    @NameInMap("departmentName")
    public String departmentName;

    // 组长userid
    @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