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

com.aliyun.dingtalkindustry_1_0.models.CustomizeContactDeptUpdateRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CustomizeContactDeptUpdateRequest extends TeaModel {
    // 自定义通讯录Code
    @NameInMap("code")
    public String code;

    // 部门Id
    @NameInMap("deptId")
    public Long deptId;

    // 部门主管列表
    @NameInMap("managerIdList")
    public java.util.List managerIdList;

    // 部门名称
    @NameInMap("name")
    public String name;

    // 部门排序
    @NameInMap("order")
    public Long order;

    // 上级部门Id
    @NameInMap("parentDeptId")
    public Long parentDeptId;

    public static CustomizeContactDeptUpdateRequest build(java.util.Map map) throws Exception {
        CustomizeContactDeptUpdateRequest self = new CustomizeContactDeptUpdateRequest();
        return TeaModel.build(map, self);
    }

    public CustomizeContactDeptUpdateRequest setCode(String code) {
        this.code = code;
        return this;
    }
    public String getCode() {
        return this.code;
    }

    public CustomizeContactDeptUpdateRequest setDeptId(Long deptId) {
        this.deptId = deptId;
        return this;
    }
    public Long getDeptId() {
        return this.deptId;
    }

    public CustomizeContactDeptUpdateRequest setManagerIdList(java.util.List managerIdList) {
        this.managerIdList = managerIdList;
        return this;
    }
    public java.util.List getManagerIdList() {
        return this.managerIdList;
    }

    public CustomizeContactDeptUpdateRequest setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

    public CustomizeContactDeptUpdateRequest setOrder(Long order) {
        this.order = order;
        return this;
    }
    public Long getOrder() {
        return this.order;
    }

    public CustomizeContactDeptUpdateRequest setParentDeptId(Long parentDeptId) {
        this.parentDeptId = parentDeptId;
        return this;
    }
    public Long getParentDeptId() {
        return this.parentDeptId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy