![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkresident_1_0.models.GetResidentMembersInfoRequest 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 GetResidentMembersInfoRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("residentCropId")
public String residentCropId;
/**
* This parameter is required.
*/
@NameInMap("userIdList")
public java.util.List userIdList;
public static GetResidentMembersInfoRequest build(java.util.Map map) throws Exception {
GetResidentMembersInfoRequest self = new GetResidentMembersInfoRequest();
return TeaModel.build(map, self);
}
public GetResidentMembersInfoRequest setResidentCropId(String residentCropId) {
this.residentCropId = residentCropId;
return this;
}
public String getResidentCropId() {
return this.residentCropId;
}
public GetResidentMembersInfoRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy