![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkim_1_0.models.GetInnerGroupMembersRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class GetInnerGroupMembersRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* UZr*****
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* cid1e*****==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* 015*****
*/
@NameInMap("userId")
public String userId;
public static GetInnerGroupMembersRequest build(java.util.Map map) throws Exception {
GetInnerGroupMembersRequest self = new GetInnerGroupMembersRequest();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetInnerGroupMembersRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetInnerGroupMembersRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetInnerGroupMembersRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy