com.aliyun.dingtalkresident_1_0.models.ListIndustryRoleUsersResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class ListIndustryRoleUsersResponseBody extends TeaModel {
@NameInMap("userIdList")
public java.util.List userIdList;
public static ListIndustryRoleUsersResponseBody build(java.util.Map map) throws Exception {
ListIndustryRoleUsersResponseBody self = new ListIndustryRoleUsersResponseBody();
return TeaModel.build(map, self);
}
public ListIndustryRoleUsersResponseBody setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}