![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkim_1_0.models.SearchInnerGroupsRequest 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 SearchInnerGroupsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*
* example:
* 测试关键词
*/
@NameInMap("searchKey")
public String searchKey;
/**
* This parameter is required.
*
* example:
* 015*****
*/
@NameInMap("userId")
public String userId;
public static SearchInnerGroupsRequest build(java.util.Map map) throws Exception {
SearchInnerGroupsRequest self = new SearchInnerGroupsRequest();
return TeaModel.build(map, self);
}
public SearchInnerGroupsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchInnerGroupsRequest setSearchKey(String searchKey) {
this.searchKey = searchKey;
return this;
}
public String getSearchKey() {
return this.searchKey;
}
public SearchInnerGroupsRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy