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

com.aliyun.dingtalkvillage_1_0.models.ListResidentDeptUsersResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
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 ListResidentDeptUsersResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("hasMore") public Boolean hasMore; /** *

This parameter is required.

*/ @NameInMap("nextCursor") public Long nextCursor; /** *

This parameter is required.

*/ @NameInMap("userList") public java.util.List userList; public static ListResidentDeptUsersResponseBody build(java.util.Map map) throws Exception { ListResidentDeptUsersResponseBody self = new ListResidentDeptUsersResponseBody(); return TeaModel.build(map, self); } public ListResidentDeptUsersResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public ListResidentDeptUsersResponseBody setNextCursor(Long nextCursor) { this.nextCursor = nextCursor; return this; } public Long getNextCursor() { return this.nextCursor; } public ListResidentDeptUsersResponseBody setUserList(java.util.List userList) { this.userList = userList; return this; } public java.util.List getUserList() { return this.userList; } public static class ListResidentDeptUsersResponseBodyUserListRoles extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("tagCode") public String tagCode; /** *

This parameter is required.

*/ @NameInMap("tagId") public Long tagId; /** *

This parameter is required.

*/ @NameInMap("tagName") public String tagName; public static ListResidentDeptUsersResponseBodyUserListRoles build(java.util.Map map) throws Exception { ListResidentDeptUsersResponseBodyUserListRoles self = new ListResidentDeptUsersResponseBodyUserListRoles(); return TeaModel.build(map, self); } public ListResidentDeptUsersResponseBodyUserListRoles setTagCode(String tagCode) { this.tagCode = tagCode; return this; } public String getTagCode() { return this.tagCode; } public ListResidentDeptUsersResponseBodyUserListRoles setTagId(Long tagId) { this.tagId = tagId; return this; } public Long getTagId() { return this.tagId; } public ListResidentDeptUsersResponseBodyUserListRoles setTagName(String tagName) { this.tagName = tagName; return this; } public String getTagName() { return this.tagName; } } public static class ListResidentDeptUsersResponseBodyUserList extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("feature") public String feature; /** *

This parameter is required.

*/ @NameInMap("name") public String name; /** *

This parameter is required.

*/ @NameInMap("roles") public java.util.List roles; /** *

This parameter is required.

*/ @NameInMap("unionId") public String unionId; /** *

This parameter is required.

*/ @NameInMap("userId") public String userId; public static ListResidentDeptUsersResponseBodyUserList build(java.util.Map map) throws Exception { ListResidentDeptUsersResponseBodyUserList self = new ListResidentDeptUsersResponseBodyUserList(); return TeaModel.build(map, self); } public ListResidentDeptUsersResponseBodyUserList setFeature(String feature) { this.feature = feature; return this; } public String getFeature() { return this.feature; } public ListResidentDeptUsersResponseBodyUserList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListResidentDeptUsersResponseBodyUserList setRoles(java.util.List roles) { this.roles = roles; return this; } public java.util.List getRoles() { return this.roles; } public ListResidentDeptUsersResponseBodyUserList setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public ListResidentDeptUsersResponseBodyUserList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy