![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkreport_1_0.models.QueryRemindResultsRequest 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.dingtalkreport_1_0.models;
import com.aliyun.tea.*;
public class QueryRemindResultsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* This parameter is required.
*
* example:
* user123
*/
@NameInMap("operationUserId")
public String operationUserId;
/**
* This parameter is required.
*
* example:
* 18xxxx
*/
@NameInMap("templateId")
public String templateId;
public static QueryRemindResultsRequest build(java.util.Map map) throws Exception {
QueryRemindResultsRequest self = new QueryRemindResultsRequest();
return TeaModel.build(map, self);
}
public QueryRemindResultsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryRemindResultsRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public QueryRemindResultsRequest setOperationUserId(String operationUserId) {
this.operationUserId = operationUserId;
return this;
}
public String getOperationUserId() {
return this.operationUserId;
}
public QueryRemindResultsRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy