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

com.aliyun.dingtalkvillage_1_0.models.ListResidentUserInfosResponseBody 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.dingtalkvillage_1_0.models;

import com.aliyun.tea.*;

public class ListResidentUserInfosResponseBody extends TeaModel {
    // 员工信息列表
    @NameInMap("userList")
    public java.util.List userList;

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

    public ListResidentUserInfosResponseBody setUserList(java.util.List userList) {
        this.userList = userList;
        return this;
    }
    public java.util.List getUserList() {
        return this.userList;
    }

    public static class ListResidentUserInfosResponseBodyUserListRoles extends TeaModel {
        // 标签名称 tagCode
        @NameInMap("tagCode")
        public String tagCode;

        // 标签id
        @NameInMap("tagId")
        public Long tagId;

        // 标签名称
        @NameInMap("tagName")
        public String tagName;

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

        public ListResidentUserInfosResponseBodyUserListRoles setTagCode(String tagCode) {
            this.tagCode = tagCode;
            return this;
        }
        public String getTagCode() {
            return this.tagCode;
        }

        public ListResidentUserInfosResponseBodyUserListRoles setTagId(Long tagId) {
            this.tagId = tagId;
            return this;
        }
        public Long getTagId() {
            return this.tagId;
        }

        public ListResidentUserInfosResponseBodyUserListRoles setTagName(String tagName) {
            this.tagName = tagName;
            return this;
        }
        public String getTagName() {
            return this.tagName;
        }

    }

    public static class ListResidentUserInfosResponseBodyUserList extends TeaModel {
        // 员工特征
        @NameInMap("feature")
        public String feature;

        // 标签列表
        @NameInMap("roles")
        public java.util.List roles;

        // 钉钉唯一标识
        @NameInMap("unionId")
        public String unionId;

        // 员工 ID
        @NameInMap("userId")
        public String userId;

        // 员工名字
        @NameInMap("userName")
        public String userName;

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

        public ListResidentUserInfosResponseBodyUserList setFeature(String feature) {
            this.feature = feature;
            return this;
        }
        public String getFeature() {
            return this.feature;
        }

        public ListResidentUserInfosResponseBodyUserList setRoles(java.util.List roles) {
            this.roles = roles;
            return this;
        }
        public java.util.List getRoles() {
            return this.roles;
        }

        public ListResidentUserInfosResponseBodyUserList setUnionId(String unionId) {
            this.unionId = unionId;
            return this;
        }
        public String getUnionId() {
            return this.unionId;
        }

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

        public ListResidentUserInfosResponseBodyUserList setUserName(String userName) {
            this.userName = userName;
            return this;
        }
        public String getUserName() {
            return this.userName;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy