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

com.aliyun.dingtalkim_1_0.models.GetInnerGroupMembersRequest 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 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