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

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

There is a newer version: 2.1.67
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 BatchQueryGroupMemberRequest extends TeaModel {
    @NameInMap("coolAppCode")
    public String coolAppCode;

    /**
     * 

This parameter is required.

* * example: *

200

*/ @NameInMap("maxResults") public Long maxResults; @NameInMap("nextToken") public String nextToken; /** *

This parameter is required.

* * example: *

cidXXXXXXX

*/ @NameInMap("openConversationId") public String openConversationId; public static BatchQueryGroupMemberRequest build(java.util.Map map) throws Exception { BatchQueryGroupMemberRequest self = new BatchQueryGroupMemberRequest(); return TeaModel.build(map, self); } public BatchQueryGroupMemberRequest setCoolAppCode(String coolAppCode) { this.coolAppCode = coolAppCode; return this; } public String getCoolAppCode() { return this.coolAppCode; } public BatchQueryGroupMemberRequest setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public BatchQueryGroupMemberRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public BatchQueryGroupMemberRequest setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy