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.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 ListResidentUserInfosResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @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 { /** *

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 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 { /** *

This parameter is required.

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

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; /** *

This parameter is required.

*/ @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 - 2025 Weber Informatics LLC | Privacy Policy