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

com.aliyun.dingtalkreport_1_0.models.QueryRemindResultsRequest 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.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