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

com.aliyun.dingtalkexclusive_1_0.models.GetOutsideAuditGroupMessageByPageRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetOutsideAuditGroupMessageByPageRequest extends TeaModel {
    /**
     * example:
     * 

20

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

This parameter is required.

* * example: *

1680493837426

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

This parameter is required.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy