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

com.aliyun.dingtalkindustry_1_0.models.CustomizeContactEmpListResponseBody 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 CustomizeContactEmpListResponseBody extends TeaModel {
    // 人员信息列表
    @NameInMap("content")
    public java.util.List content;

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

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

    public static class CustomizeContactEmpListResponseBodyContent extends TeaModel {
        // 人员姓名
        @NameInMap("name")
        public String name;

        // 人员Id
        @NameInMap("userId")
        public String userId;

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

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

        public CustomizeContactEmpListResponseBodyContent setUserId(String userId) {
            this.userId = userId;
            return this;
        }
        public String getUserId() {
            return this.userId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy