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

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

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CustomizeContactListResponseBody extends TeaModel {
    // content
    @NameInMap("content")
    public java.util.List content;

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

    public CustomizeContactListResponseBody setContent(java.util.List content) {
        this.content = content;
        return this;
    }
    public java.util.List getContent() {
        return this.content;
    }

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

        // 自定义通讯录名称
        @NameInMap("name")
        public String name;

        // 自定义通讯录排序
        @NameInMap("order")
        public Long order;

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

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

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

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

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

        public CustomizeContactListResponseBodyContent setRootDeptId(Long rootDeptId) {
            this.rootDeptId = rootDeptId;
            return this;
        }
        public Long getRootDeptId() {
            return this.rootDeptId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy