com.aliyun.dingtalkexclusive_1_0.models.GetOutsideAuditGroupMessageByPageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}