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

com.aliyun.dingtalkvillage_1_0.models.ListDeptSimpleUsersResponseBody 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 ListDeptSimpleUsersResponseBody extends TeaModel {
    @NameInMap("hasMore")
    public Boolean hasMore;

    @NameInMap("nextCursor")
    public Long nextCursor;

    @NameInMap("totalCount")
    public Long totalCount;

    // 用户列表
    @NameInMap("userList")
    public java.util.List userList;

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

    public ListDeptSimpleUsersResponseBody setHasMore(Boolean hasMore) {
        this.hasMore = hasMore;
        return this;
    }
    public Boolean getHasMore() {
        return this.hasMore;
    }

    public ListDeptSimpleUsersResponseBody setNextCursor(Long nextCursor) {
        this.nextCursor = nextCursor;
        return this;
    }
    public Long getNextCursor() {
        return this.nextCursor;
    }

    public ListDeptSimpleUsersResponseBody setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Long getTotalCount() {
        return this.totalCount;
    }

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

    public static class ListDeptSimpleUsersResponseBodyUserList extends TeaModel {
        // 用户姓名
        @NameInMap("name")
        public String name;

        // 用户ID
        @NameInMap("userId")
        public String userId;

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

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

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

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy