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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkim_1_0.models;

import com.aliyun.tea.*;

public class QueryInnerGroupMemberListRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

20

*/ @NameInMap("maxResults") public Integer maxResults; /** *

This parameter is required.

* * example: *

0

*/ @NameInMap("nextToken") public Integer nextToken; /** *

This parameter is required.

*/ @NameInMap("openConversationId") public String openConversationId; /** *

This parameter is required.

*/ @NameInMap("userId") public String userId; public static QueryInnerGroupMemberListRequest build(java.util.Map map) throws Exception { QueryInnerGroupMemberListRequest self = new QueryInnerGroupMemberListRequest(); return TeaModel.build(map, self); } public QueryInnerGroupMemberListRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryInnerGroupMemberListRequest setNextToken(Integer nextToken) { this.nextToken = nextToken; return this; } public Integer getNextToken() { return this.nextToken; } public QueryInnerGroupMemberListRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public QueryInnerGroupMemberListRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy