com.aliyun.dingtalkvillage_1_0.models.ListDeptUserIdsResponseBody 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.dingtalkvillage_1_0.models;
import com.aliyun.tea.*;
public class ListDeptUserIdsResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("userIdList")
public java.util.List userIdList;
public static ListDeptUserIdsResponseBody build(java.util.Map map) throws Exception {
ListDeptUserIdsResponseBody self = new ListDeptUserIdsResponseBody();
return TeaModel.build(map, self);
}
public ListDeptUserIdsResponseBody setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}