All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkim_1_0.models.SearchInnerGroupsRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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